Skip to main content
DELETE
/
client-tokens
/
{id}
JavaScript
import Reminix from '@reminix/sdk';

const client = new Reminix({
  apiKey: process.env['REMINIX_API_KEY'], // This is the default and can be omitted
});

await client.clientTokens.revoke('x');
{
  "error": "Invalid or missing API key"
}

Authorizations

Authorization
string
header
required

API Key or Personal Access Token (PAT). When using PAT, include X-Project header.

Path Parameters

id
string
required

Client token ID to revoke

Minimum string length: 1

Response

Token revoked successfully