Fetch flow test users

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

Standard setup for AI tools providing an mcp.json file

mcp.json
"Studio MCP server": {
  "url": "https://twilio.demo.bump-doc.com/doc/studio/mcp"
}
Close
GET /v2/Flows/{Sid}/TestUsers

Test users of a flow

Fetch flow test users

Path parameters

  • Sid string Required

    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}$.

Responses

  • 200 application/json

    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 \
 --request GET 'https://studio.twilio.com/v2/Flows/{Sid}/TestUsers' \
 --user "username:password"
Response examples (200)
{
  "sid": "string",
  "test_users": [
    "string"
  ],
  "url": "https://example.com"
}