Delete Api Key
DELETE
/api-keys/{key_id}Path parameters
key_idstringrequiredHeader parameters
authorizationstring | anyX-Api-Keystring | anyResponses
200Successful Response
any422Validation Error
detailValidationError[]Show propertiesHide properties
Array of
ValidationErrorlocstring | integer[]requiredShow propertiesHide properties
Array of
string | integerAny of:
string
stringinteger
integermsgstringrequiredtypestringrequiredRequest
curl -X DELETE "/api-keys/string"const response = await fetch("/api-keys/string", {
method: "DELETE"
});import requests
response = requests.delete(
"/api-keys/string",
)Response
"string"{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}