curl --request DELETE \
--url 'https://api.unify.ai/v0/custom_endpoint?name=endpoint1' \
--header "Authorization: Bearer $UNIFY_KEY"
{
"info": "Custom endpoint deleted successfully!"
}
Deletes a custom endpoint from your account.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Name of the custom endpoint to delete.
curl --request DELETE \
--url 'https://api.unify.ai/v0/custom_endpoint?name=endpoint1' \
--header "Authorization: Bearer $UNIFY_KEY"
{
"info": "Custom endpoint deleted successfully!"
}