from latitudesh_python_sdk import Latitudeshimport oswith Latitudesh( bearer=os.getenv("LATITUDESH_BEARER", ""),) as latitudesh: latitudesh.api_keys.delete(api_key_id="tok_lQraYDPeOpjwW") # Use the SDK ...
Copy
{ "meta": {}}
API keys
Delete API key
Delete an existing API Key. Once deleted, the API Key can no longer be used to access the API.
DELETE
/
auth
/
api_keys
/
{api_key_id}
Python (SDK)
Copy
from latitudesh_python_sdk import Latitudeshimport oswith Latitudesh( bearer=os.getenv("LATITUDESH_BEARER", ""),) as latitudesh: latitudesh.api_keys.delete(api_key_id="tok_lQraYDPeOpjwW") # Use the SDK ...