Retrieve the most recent context for an Execution.
JSON context for executions
Retrieve the most recent context for an Execution.
Path parameters
-
The SID of the Flow with the Execution context 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 context to fetch.
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}/Context
curl \
--request GET 'https://studio.twilio.com/v2/Flows/{FlowSid}/Executions/{ExecutionSid}/Context' \
--user "username:password"
Response examples (200)
{
"url": "https://studio.twilio.com/v2/Flows/FWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Executions/FNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Context",
"context": {
"foo": "bar"
},
"flow_sid": "FWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"execution_sid": "FNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
}