DELETE
/
v0
/
custom_api_key
curl --request DELETE \
  --url 'https://api.unify.ai/v0/custom_api_key?name=key1' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "info": "API key deleted successfully!"
}

Deletes the custom API key from your account.

Authorizations

Authorization
string
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

name
string
required

Name of the custom API key to delete.

curl --request DELETE \
  --url 'https://api.unify.ai/v0/custom_api_key?name=key1' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "info": "API key deleted successfully!"
}