DELETE
/
v0
/
custom_endpoint
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

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 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!"
}