A&BR

Version 1.0 (latest)

Supplies A&BR hierarchy data for billing creation

Version 1.0
download iconDownload spec

Endpoint

GET
https://abr-api.it.att.com/cif-lite-data

This API is invoked by BCAI to consume the A&BR hierarchy data required for billing hierarchy creation in the target flow. It provides details like contractNumber, typeOfContract activity and contractSolutionNumber.

arrowSecurity

http

scheme:bearer
bearerFormat:JWT
arrowRequest

Query Parameters

        Body Parameters

        Responses

        Successful operation

        arrowBody

        application/json

        REQUEST

        1
        2
        3
        curl --request GET \
             --url 'https://abr-api.it.att.com/cif-lite-data?attContractSolutionNumber=CSN123456&transactionId=TXN789012&hierarchyOnlySolutionNumber=HOSN456789' \
             --header 'accept: application/json'

        RESPONSE

        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        17
        18
        {
          "attContractNumber": "ATT123456",
          "attContractSolutionNumber": "CSN123456",
          "hierarchyOnlySolutionNumber": "HOSN789012",
          "typeOfContractActivity": "Renewal",
          "serviceType": "Wireless",
          "transactionId": "TXN789012",
          "customerId": "CUST123456",
          "hierarchyNodes": [
            {
              "countryCode": "US",
              "activityType": "Update",
              "typeOfChange": "null",
              "hierarchyCreationStatus": "In Progress",
              "baNumber": "BA123456"
            }
          ]
        }