A&BR

Version 1.0 (latest)

Processes relink response from BCAI

Version 1.0
download iconDownload spec

Endpoint

POST
https://abr-api.it.att.com/relink/abr-complete

This API is invoked by BCAI to provide the relink response to A&BR. It contains the details like relink completion status/error and it sends this details to Nexxus.

arrowSecurity

http

scheme:bearer
bearerFormat:JWT
arrowRequest

Body Parameters

Responses

Successful operation

arrowBody

application/json

REQUEST

1
2
3
4
5
6
7
8
9
10
11
12
13
14
curl --request POST \
     --url https://abr-api.it.att.com/relink/abr-complete \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "originatingSystem": "SSDF",
  "orderNumber": "ORD123456",
  "transactionId": "TXN123456",
  "statusCode": 200,
  "errorCode": "ERR001",
  "errorMessage": "Invalid input data"
}
'

RESPONSE

1
2
3
4
5
6
7
8
{
  "originatingSystem": "SSDF",
  "orderNumber": "ORD123456",
  "transactionId": "TXN123456",
  "statusCode": 200,
  "errorCode": "ERR001",
  "errorMessage": "Invalid input data"
}