Delete a specific Participant. This is a soft-delete. The participant remains associated with the session and cannot be re-added. Participants are only permanently deleted when the [Session](https://www.twilio.com/docs/proxy/api/session) is deleted.

DELETE /v1/Services/{ServiceSid}/Sessions/{SessionSid}/Participants/{Sid}

Delete a specific Participant. This is a soft-delete. The participant remains associated with the session and cannot be re-added. Participants are only permanently deleted when the Session is deleted.

Path parameters

  • ServiceSid string Required

    The SID of the parent Service of the resource to delete.

    Minimum length is 34, maximum length is 34. Format should match the following pattern: ^KS[0-9a-fA-F]{32}$.

  • SessionSid string Required

    The SID of the parent Session of the resource to delete.

    Minimum length is 34, maximum length is 34. Format should match the following pattern: ^KC[0-9a-fA-F]{32}$.

  • Sid string Required

    The Twilio-provided string that uniquely identifies the Participant resource to delete.

    Minimum length is 34, maximum length is 34. Format should match the following pattern: ^KP[0-9a-fA-F]{32}$.

Responses

  • 200

    The resource was deleted successfully.

DELETE /v1/Services/{ServiceSid}/Sessions/{SessionSid}/Participants/{Sid}
curl \
 --request DELETE 'https://proxy.twilio.com/v1/Services/{ServiceSid}/Sessions/{SessionSid}/Participants/{Sid}' \
 --user "username:password"