Delete a conference participant
DELETE/texml/Accounts/:account_sid/Conferences/:conference_sid/Participants/:call_sid
Deletes a conference participant
Request
Path Parameters
account_sid stringrequired
The id of the account the resource belongs to.
conference_sid stringrequired
The ConferenceSid that uniquely identifies a conference.
call_sid stringrequired
The CallSid that identifies the call to update.
Responses
204: The resource was deleted successfully.
404: Resource not found
- application/json
Request samples
curl -L -X DELETE 'https://api.telnyx.com/v2/texml/Accounts/:account_sid/Conferences/:conference_sid/Participants/:call_sid' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"errors": [
{
"detail": "Resource not found"
}
]
}