Retrieve the context for an Engagement Step.
JSON context for individual steps
Retrieve the context for an Engagement 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 Engagement 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}/Engagements/{EngagementSid}/Steps/{StepSid}/Context
curl \
--request GET 'https://studio.twilio.com/v1/Flows/{FlowSid}/Engagements/{EngagementSid}/Steps/{StepSid}/Context' \
--user "username:password"
Response examples (200)
{
"url": "https://studio.twilio.com/v1/Flows/FWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Engagements/FNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Steps/FTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Context",
"context": {
"foo": "bar"
},
"flow_sid": "FWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"step_sid": "FTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"engagement_sid": "FNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
}