Authorizations
Path Parameters
Response
200 - application/vnd.api+json
Success
The response is of type file
.
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.api_keys.delete(api_key_id="tok_xkjQwdENqYNVP")
# Use the SDK ...
{
"meta": {}
}
Delete an existing API Key. Once deleted, the API Key can no longer be used to access the API.
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.api_keys.delete(api_key_id="tok_xkjQwdENqYNVP")
# Use the SDK ...
{
"meta": {}
}
Success
The response is of type file
.
Was this page helpful?