Disconnect token

POST /2023-03-01/management/disconnect

Disconnect the token. A disconnected token will no longer return data. Data requests with a disconnected token will return a 403 Forbidden

Responses

  • 200 application/json

    Success

    Hide response attribute Show response attribute object
    • disconnected boolean Required

      The access token has been disconnected and is no longer allowed to be used by your application

      Value is true.

  • 403 application/json

    Forbidden

    Hide response attribute Show response attribute object
  • 429 application/json

    Rate Limited / Too Many Requests

    Hide headers attribute Show headers attribute
    • Retry your call after the specified amount of seconds

    Hide response attribute Show response attribute object
  • 500 application/json

    Server Error

    Hide response attribute Show response attribute object
POST /2023-03-01/management/disconnect
curl \
 -X POST https://api.affixapi.com/2023-03-01/management/disconnect \
 -H "Authorization: $API_KEY"
Response examples (200)
{
  "disconnected": true
}
Response examples (403)
{
  "message": "string"
}
Response examples (429)
# Headers
Retry-After: 42

# Payload
{
  "message": "string"
}
Response examples (500)
{
  "message": "string"
}