menu
Revoke a personal access token
Revokes a personal access token. Revocation takes effect within seconds; other tokens keep working.
Endpoint
DELETE https://api.sendstreak.com/v2/users/me/tokens/{tokenId}
All v2 endpoints require a bearer token - see Authentication.
Path parameters
| Parameter | Type | Description |
|---|---|---|
tokenId | string |
Response
Revoked.
Errors
| Status | Description |
|---|---|
401 | Missing or invalid token, or the token is not authorized for this account/user. |
404 | The requested resource does not exist. |
See Errors and rate limits for what error responses look like.
Curl example
curl --location --request DELETE 'https://api.sendstreak.com/v2/users/me/tokens/YOUR_TOKEN_ID' \
--header 'Authorization: Bearer YOUR_API_TOKEN'