Retrieve the context for an Execution Step.
JSON context for an individual step within an execution
Retrieve the context for an Execution 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 Step to fetch.
Minimum length is
34
, maximum length is34
. Format should match the following pattern:^FT[0-9a-fA-F]{32}$
.
GET
/v1/Flows/{FlowSid}/Executions/{ExecutionSid}/Steps/{StepSid}/Context
curl \
--request GET 'https://studio.twilio.com/v1/Flows/{FlowSid}/Executions/{ExecutionSid}/Steps/{StepSid}/Context' \
--user "username:password"
Response examples (200)
{
"url": "https://studio.twilio.com/v1/Flows/FWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Executions/FNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Steps/FTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Context",
"context": {
"foo": "bar"
},
"flow_sid": "FWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"step_sid": "FTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"execution_sid": "FNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
}