Skip to content

Revoke an access token

DELETE
/api/v1/me/tokens/{token}
curl --request DELETE \
--url https://example.com/api/v1/me/tokens/42 \
--header 'Authorization: Bearer <token>'
token
required
integer format: int64
Example
42

The ID of the access token to revoke.

Access token revoked.

Missing or invalid bearer token.

Media type application/json

Standard RFC 9457 problem details envelope.

object
type
required

RFC 9457 compliant problem details response builder.

string format: uri
title
required
string
status
required
integer
detail
string
nullable
instance
required
string format: uri-reference
trace_id

Unique identifier for the API request (if available).

string
nullable
Example
{
"type": "about:blank",
"title": "Unauthorized",
"status": 401,
"detail": "Authentication failed",
"instance": "/api/v1/me",
"trace_id": "b4f5aa7a-1470-4d92-8d3c-98e7c7de9f5f"
}

Access token not found.

Media type application/json

Standard RFC 9457 problem details envelope.

object
type
required

RFC 9457 compliant problem details response builder.

string format: uri
title
required
string
status
required
integer
detail
string
nullable
instance
required
string format: uri-reference
trace_id

Unique identifier for the API request (if available).

string
nullable
Example
{
"type": "about:blank",
"title": "Unauthorized",
"status": 401,
"detail": "Authentication failed",
"instance": "/api/v1/me",
"trace_id": "b4f5aa7a-1470-4d92-8d3c-98e7c7de9f5f"
}

Cannot revoke the token currently being used.

Media type application/json

Standard RFC 9457 problem details envelope.

object
type
required

RFC 9457 compliant problem details response builder.

string format: uri
title
required
string
status
required
integer
detail
string
nullable
instance
required
string format: uri-reference
trace_id

Unique identifier for the API request (if available).

string
nullable
Example
{
"type": "about:blank",
"title": "Unauthorized",
"status": 401,
"detail": "Authentication failed",
"instance": "/api/v1/me",
"trace_id": "b4f5aa7a-1470-4d92-8d3c-98e7c7de9f5f"
}