DELETE
/
v0
/
interfaces
/
curl --request DELETE \
  --url 'https://api.unify.ai/v0/interfaces/?interface_id=None&project=None&name=None' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "info": "Interface deleted successfully"
}
Delete an interface by ID or by project ID and name.

Authorizations

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

Query Parameters

interface_id
string | null
The ID of the interface to delete
project
string | null
The project ID the interface belongs to
name
string | null
The name of the interface to delete
curl --request DELETE \
  --url 'https://api.unify.ai/v0/interfaces/?interface_id=None&project=None&name=None' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "info": "Interface deleted successfully"
}