Offer Qualifications

Version 0.9.0
download iconDownload spec

Endpoint

POST
https://capabilities.it.att.com/product-relation/offer-qualifications

For a SAART L3 customer identifier, we evaluate the promotions for which the customer currently qualifies. The list of qualifying promotion IDs is returned in the responseData.offerQualifications field within the JSON response body. Each promotion ID can then be used to retrieve the corresponding Promotion (TMF671) from the Common Catalog.

arrowSecurity

http

scheme:bearer
bearerFormat:JWT
arrowRequest

Body Parameters

Responses

Product offerings successfully computed and returned

arrowBody

application/json

REQUEST

1
2
3
4
5
6
7
8
9
curl --request POST \
     --url https://capabilities.it.att.com/product-relation/offer-qualifications \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "saartL3Id": "string"
}
'

RESPONSE

1
2
3
4
5
6
7
8
9
10
11
{
  "responseData": {
    "offerQualifications": [
      "PO_ID_001",
      "PO_ID_002",
      "PO_ID_003"
    ]
  },
  "status": 201,
  "timestamp": "2024-02-19T14:30:00.000Z"
}