DELETE
/
v0
/
assistant
/
{assistant_id}
/
recordings
/
{recording_id}
curl --request DELETE \
  --url 'https://api.unify.ai/v0/assistant/<assistant_id>/recordings/<recording_id>' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "info": "Recording deleted successfully"
}

Deletes a specific call recording by ID for the specified assistant.

Authorizations

Authorization
string
required

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

Path Parameters

assistant_id
integer
required
recording_id
integer
required
curl --request DELETE \
  --url 'https://api.unify.ai/v0/assistant/<assistant_id>/recordings/<recording_id>' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "info": "Recording deleted successfully"
}