Skip to content
Get started

Revoke API token

auth.api_keys.revoke(strid)
DELETE/api/auth/api-keys/{id}/

Permanently revoke an API token.

ParametersExpand Collapse
id: str
formatuuid
Revoke API token
from overmind_lab import OvermindLab

client = OvermindLab()
client.auth.api_keys.revoke(
    "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
)
Returns Examples