Update defaults

POST /v1/Assistants/{AssistantSid}/Defaults

TODO: Resource-level docs

Path parameters

application/x-www-form-urlencoded

Body

  • A JSON string that describes the default task links for the assistant_initiation, collect, and fallback situations.

Responses

  • 200

    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 resource

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

    • The JSON string that describes the default task links

    • url string(uri) | null

      The absolute URL of the Defaults resource

POST /v1/Assistants/{AssistantSid}/Defaults
curl \
 -X POST https://autopilot.twilio.com/v1/Assistants/{AssistantSid}/Defaults \
 --user "username:password" \
 -H "Content-Type: application/x-www-form-urlencoded"
Request example
{}
Response examples (200)
{
  "account_sid": "string",
  "assistant_sid": "string",
  "url": "https://example.com"
}