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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
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!"
}