Retrieve a list of all Steps for an Execution.
Individual steps within an execution
Retrieve a list of all Steps for an Execution.
Path parameters
-
The SID of the Flow with the Steps to read.
Minimum length is
34
, maximum length is34
. Format should match the following pattern:^FW[0-9a-fA-F]{32}$
. -
The SID of the Execution with the Steps to read.
Minimum length is
34
, maximum length is34
. Format should match the following pattern:^FN[0-9a-fA-F]{32}$
.
GET
/v2/Flows/{FlowSid}/Executions/{ExecutionSid}/Steps
curl \
--request GET 'https://studio.twilio.com/v2/Flows/{FlowSid}/Executions/{ExecutionSid}/Steps' \
--user "username:password"
Response examples (200)
{
"meta": {
"key": "steps",
"url": "https://studio.twilio.com/v2/Flows/FWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Executions/FNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Steps?PageSize=50&Page=0",
"page": 0,
"page_size": 50,
"next_page_url": null,
"first_page_url": "https://studio.twilio.com/v2/Flows/FWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Executions/FNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Steps?PageSize=50&Page=0",
"previous_page_url": null
},
"steps": []
}