Retrieve a Step.
Individual steps within an execution
Retrieve a Step.
Path parameters
-
The SID of the Flow with the Step to fetch.
Minimum length is
34
, maximum length is34
. Format should match the following pattern:^FW[0-9a-fA-F]{32}$
. -
The SID of the Execution resource with the Step to fetch.
Minimum length is
34
, maximum length is34
. Format should match the following pattern:^FN[0-9a-fA-F]{32}$
. -
The SID of the ExecutionStep resource to fetch.
Minimum length is
34
, maximum length is34
. Format should match the following pattern:^FT[0-9a-fA-F]{32}$
.
GET
/v2/Flows/{FlowSid}/Executions/{ExecutionSid}/Steps/{Sid}
curl \
--request GET 'https://studio.twilio.com/v2/Flows/{FlowSid}/Executions/{ExecutionSid}/Steps/{Sid}' \
--user "username:password"
Response examples (200)
{
"sid": "FTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"url": "https://studio.twilio.com/v2/Flows/FWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Executions/FNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Steps/FTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"name": "incomingRequest",
"links": {
"step_context": "https://studio.twilio.com/v2/Flows/FWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Executions/FNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Steps/FTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Context"
},
"context": {},
"flow_sid": "FWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"date_created": "2017-11-06T12:00:00Z",
"date_updated": null,
"execution_sid": "FNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"parent_step_sid": "FTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"transitioned_to": "Ended",
"transitioned_from": "Trigger"
}