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_lQraYDPeOpjwW")
# 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_lQraYDPeOpjwW")
# Use the SDK ...{
"meta": {}
}Was this page helpful?