Update flow test users

POST /v2/Flows/{Sid}/TestUsers

Test users of a flow

Update flow test users

Path parameters

  • Sid string Required

    Unique identifier of the flow.

application/x-www-form-urlencoded

Body

  • TestUsers array[string] Required

    List of test user identities that can test draft versions of the flow.

Responses

  • 200

    OK

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

      Unique identifier of the flow.

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

    • test_users array[string] | null

      List of test user identities that can test draft versions of the flow.

    • url string(uri) | null

      The URL of this resource.

POST /v2/Flows/{Sid}/TestUsers
curl \
 -X POST https://studio.twilio.com/v2/Flows/{Sid}/TestUsers \
 --user "username:password" \
 -H "Content-Type: application/x-www-form-urlencoded" \
 -d 'TestUsers=string'
Request example
{
  "TestUsers": [
    "string"
  ]
}
Response examples (200)
{
  "sid": "string",
  "test_users": [
    "string"
  ],
  "url": "https://example.com"
}