Delete a specific sender by its unique identifier.

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/messaging_v2/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"messaging_v2 MCP server": {
  "url": "https://twilio.demo.bump-doc.com/doc/messaging_v2/mcp"
}
Close
DELETE /v2/Channels/Senders/{Sid}

A Sender resource represents a messaging channel sender of WhatsApp.

Delete a specific sender by its unique identifier.

Path parameters

  • Sid string Required

    A 34 character string that uniquely identifies this Sender.

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

Responses

  • 204

    The resource was deleted successfully.

    Hide headers attributes Show headers attributes
    • Access-Control-Allow-Origin string

      Specify the origin(s) allowed to access the resource

    • Access-Control-Allow-Methods string

      Specify the HTTP methods allowed when accessing the resource

    • Access-Control-Allow-Headers string

      Specify the headers allowed when accessing the resource

    • Access-Control-Allow-Credentials boolean

      Indicates whether the browser should include credentials

    • Access-Control-Expose-Headers string

      Headers exposed to the client

    • T-Request-Id string
DELETE /v2/Channels/Senders/{Sid}
curl \
 --request DELETE 'https://messaging.twilio.com/v2/Channels/Senders/{Sid}' \
 --user "username:password"