Skip to main content
POST
/
delete-participant
Delete Participant
curl --request POST \
  --url https://api.heify.com/delete-participant \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "participant_id": "2e2f776f-0dff-44a9-83e0-66ad34712623"
}
'
{
  "data": {
    "message": "Participant deleted successfully"
  }
}
Deletion is permanent and cannot be undone. Transcriptions previously linked to this participant will retain the participant_id value, but the participant record will no longer be resolvable.
Returns 404 if the participant is not found.

Authorizations

x-api-key
string
header
required

Body

application/json
participant_id
string<uuid>
required

The unique identifier of the participant to delete.

Response

200 - application/json

Participant deleted successfully.

data
object