Skip to main content
DELETE
/
v0
/
assistant
/
{assistant_id}
/
contact
curl --request DELETE \
  --url 'https://api.unify.ai/v0/assistant/<assistant_id>/contact' \
  --header "Authorization: Bearer $UNIFY_KEY"
  --header 'Content-Type: application/json' \
  --data '{
    "contact_type": "email"
}'
{
    "info": "object"
}
Removes a contact method (phone, email, or WhatsApp) from an assistant and deprovisions the associated infrastructure.

Authorizations

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

Path Parameters

assistant_id
integer
required

Body

contact_type
string
required
The type of contact information to remove.
curl --request DELETE \
  --url 'https://api.unify.ai/v0/assistant/<assistant_id>/contact' \
  --header "Authorization: Bearer $UNIFY_KEY"
  --header 'Content-Type: application/json' \
  --data '{
    "contact_type": "email"
}'
{
    "info": "object"
}