Updates the actions of an Task identified by {TaskSid}

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

Standard setup for AI tools providing an mcp.json file

mcp.json
"Autopilot MCP server": {
  "url": "https://twilio.demo.bump-doc.com/doc/autopilot/mcp"
}
Close
POST /v1/Assistants/{AssistantSid}/Tasks/{TaskSid}/Actions

TODO: Resource-level docs

Updates the actions of an Task identified by {TaskSid} or {TaskUniqueName}.

Path parameters

  • AssistantSid string Required

    The SID of the Assistant that is the parent of the Task for which the task actions to update were defined.

  • TaskSid string Required

    The SID of the Task for which the task actions to update were defined.

application/x-www-form-urlencoded

Body

  • Actions

    The JSON string that specifies the actions that instruct the Assistant on how to perform the task.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • account_sid string | null

      The SID of the Account that created the resource

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

    • assistant_sid string | null

      The SID of the Assistant that is the parent of the Task associated with the resource

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

    • data

      The JSON string that specifies the actions that instruct the Assistant on how to perform the task

    • task_sid string | null

      The SID of the Task associated with the resource

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

    • url string(uri) | null

      The absolute URL of the TaskActions resource

POST /v1/Assistants/{AssistantSid}/Tasks/{TaskSid}/Actions
curl \
 --request POST 'https://autopilot.twilio.com/v1/Assistants/{AssistantSid}/Tasks/{TaskSid}/Actions' \
 --user "username:password" \
 --header "Content-Type: application/x-www-form-urlencoded"
Response examples (200)
{
  "account_sid": "string",
  "assistant_sid": "string",
  "task_sid": "string",
  "url": "https://example.com"
}