A&BR

Version 1.0 (latest)

Retrieve MCN Triplets

Version 1.0
download iconDownload spec

Endpoint

POST
https://abr-api.it.att.com/abr-mcn-triplets

This endpoint provides the complete MCN triplet related details based on the provided request. It returns the MCN triplet details including the MCN, SOC and BillGroup Information.

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
curl --request POST \
     --url https://abr-api.it.att.com/abr-mcn-triplets \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "abrId": 123456789,
  "attContractNumber": "ATT987654",
  "contractSolutionNumber": "CSN12345",
  "isoCountryCode": "US"
}
'

RESPONSE

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
  "status": "SUCCESS",
  "abrId": 123456789,
  "contractSolutionNumber": "CSN12345",
  "attContractNumber": "ATT987654",
  "customerName": "John Doe",
  "countries": [
    {
      "isoCountryCode": "US",
      "countryLegalName": "United States",
      "mcnTriplets": [
        {
          "mcn": "MCN123456",
          "soc": "SOC789",
          "billGroup": "BG001",
          "cadmBillNodeValue": "CADMNode123",
          "typeOfTriplet": "primary",
          "contractService": "Service001"
        }
      ]
    }
  ],
  "errors": "Invalid contract number",
  "errorCode": "ERR001"
}