Delete the Execution and all Steps relating to it.

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

Standard setup for AI tools providing an mcp.json file

mcp.json
"studio_v2 MCP server": {
  "url": "https://twilio.demo.bump-doc.com/doc/studio_v2/mcp"
}
Close
DELETE /v2/Flows/{FlowSid}/Executions/{Sid}

Executions of Studio flows

Delete the Execution and all Steps relating to it.

Path parameters

  • FlowSid string Required

    The SID of the Flow with the Execution resources to delete.

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

  • Sid string Required

    The SID of the Execution resource to delete.

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

Responses

  • 204

    The resource was deleted successfully.

DELETE /v2/Flows/{FlowSid}/Executions/{Sid}
curl \
 --request DELETE 'https://studio.twilio.com/v2/Flows/{FlowSid}/Executions/{Sid}' \
 --user "username:password"