Fetch flow test users

GET /v2/Flows/{Sid}/TestUsers

Test users of a flow

Fetch flow test users

Path parameters

  • Sid string Required

    Unique identifier 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.

GET /v2/Flows/{Sid}/TestUsers
curl \
 -X GET https://studio.twilio.com/v2/Flows/{Sid}/TestUsers \
 --user "username:password"
Response examples (200)
{
  "sid": "string",
  "test_users": [
    "string"
  ],
  "url": "https://example.com"
}