delete

View as MarkdownOpen in Claude

tokens.delete

Revoke and delete an API token.

Path parameters

token_idstringRequiredformat: "uuid"
The unique identifier of the token that you want to delete.

Response

Example

import { RestClient } from "@signalwire/sdk";
const client = new RestClient({
project: "your-project-id",
token: "your-api-token",
host: "your-space.signalwire.com"
});
await client.project.tokens.delete("token-id");