Delete API token
DELETE
/api/v1/api-token/{id}
const url = 'https://example.com/api/v1/api-token/example';const options = {method: 'DELETE'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://example.com/api/v1/api-token/exampleDeletes an API token by ID
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
API token ID (15 chars)
string
Responses
Section titled “Responses”Success
Not Found
Internal Server Error