Skip to main content
GET
/
partner
/
scopes
curl https://api.thanxsandbox.com/partner/scopes \
  -H 'X-ClientId: ${client_id}' \
  -H 'Accept-Version: v4.0' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer ${access_token}' \
{
  "scopes": [
    "subscribers.write"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.thanx.com/llms.txt

Use this file to discover all available pages before exploring further.

This endpoint can be used to list out the scopes the API credentials currently has access to.
curl https://api.thanxsandbox.com/partner/scopes \
  -H 'X-ClientId: ${client_id}' \
  -H 'Accept-Version: v4.0' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer ${access_token}' \

Response

scopes
array(string)
Scope granted to API credential being used
{
  "scopes": [
    "subscribers.write"
  ]
}