POST
/
v1
/
oauth
/
revoke
curl --request POST \
  --url https://public.api.collectpure.com/v1/oauth/revoke \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "token": "<string>",
  "public_key": "<string>",
  "secret_key": "<string>"
}'
{
  "status": "success"
}

This endpoint allows you to revoke (logout) an access token or refresh token, effectively ending the user’s session. Once a token is revoked, it can no longer be used for authentication.

Response Example

{
  "status": "success"
}

Authorizations

x-api-key
string
header
required

API key for authentication

Body

application/json
token
string
required

The access token or refresh token to revoke

public_key
string
required

The public key (client ID) for the OAuth application

secret_key
string
required

The secret key (client secret) for the OAuth application

Response

200
application/json
Default Response
status
enum<string>
required

Status of the revocation request

Available options:
success