Path parameters
-
Unique identifier of the flow.
Minimum length is
34
, maximum length is34
. Format should match the following pattern:^FW[0-9a-fA-F]{32}$
.
POST
/v2/Flows/{Sid}/TestUsers
curl \
--request POST 'https://studio.twilio.com/v2/Flows/{Sid}/TestUsers' \
--user "username:password" \
--header "Content-Type: application/x-www-form-urlencoded" \
--data 'TestUsers=user1&TestUsers=user2'
Request example
{"TestUsers"=>["user1", "user2"]}
Response examples (200)
{
"sid": "FWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"url": "https://studio.twilio.com/v2/Flows/FWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/TestUsers",
"test_users": [
"user1",
"user2"
]
}