Ir al contenido
GitHub

Revoke Access Token

DELETE
/token/{id}
curl --request DELETE \
--url https://auth.interledger-test.dev/token/example \
--header 'Authorization: <Authorization>'

Management endpoint to revoke access token.

id
required
string

The unique reference of the access token to be managed.

No Content

Unauthorized

Media type application/json
Invalid client
object
error
object
description
string
code
string
Allowed values: invalid_client
Example
{
"error": {
"code": "invalid_client"
}
}

Internal Server Error

Media type application/json
Request denied
object
error
object
description
string
code
string
Allowed values: request_denied
Example
{
"error": {
"code": "request_denied"
}
}