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

    Unauthorized

POST /authentication/persistent_token_remove
curl \
 --request POST 'https://middleware.example.com/api/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"
}