Remove a participant from the conversation

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://twilio.demo.bump-doc.com/doc/conversations/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Conversations MCP server": {
  "url": "https://twilio.demo.bump-doc.com/doc/conversations/mcp"
}
Close
DELETE /v1/Conversations/{ConversationSid}/Participants/{Sid}

A Participant resource represents a member of the conversation.

Remove a participant from the conversation

Headers

  • X-Twilio-Webhook-Enabled string

    The X-Twilio-Webhook-Enabled HTTP request header

    Values are true or false.

Path parameters

  • ConversationSid string Required

    The unique ID of the Conversation for this participant.

  • Sid string Required

    A 34 character string that uniquely identifies this resource.

Responses

  • 204

    The resource was deleted successfully.

DELETE /v1/Conversations/{ConversationSid}/Participants/{Sid}
curl \
 --request DELETE 'https://conversations.twilio.com/v1/Conversations/{ConversationSid}/Participants/{Sid}' \
 --user "username:password" \
 --header "X-Twilio-Webhook-Enabled: true"