Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Get the customer’s relationship to offers (granted).
Response is a list of resource identifiers
{
"data": [
{ "type": "offers", "id": "123" },
{ "type": "offers", "id": "456" }
]
}
The related tag resources are available using the GET api/v1/offers
endpoint.
The resource identifier includes the offer id and type.
Example URLs: /api/v1/offers/123
, /api/v1/offers/456
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.