Remove persistent token (legacy endpoint) Deprecated

POST /authentication/persistent_token_remove
application/json

Body

  • type string
  • subtype string

    Legacy subtype; "nethlink" maps to nethlink audience, defaults to phone-island

Responses

  • 204

    Token(s) removed

  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
  • 500 application/json

    Failed to persist token removal

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data
    • error string
POST /authentication/persistent_token_remove
curl \
 --request POST 'http://localhost:8080/authentication/persistent_token_remove' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"type":"string","subtype":"string"}'
Request examples
{
  "type": "string",
  "subtype": "string"
}
Response examples (401)
{
  "code": 42,
  "message": "string",
  "error": "string"
}
Response examples (500)
{
  "code": 42,
  "message": "string",
  "error": "string"
}