Retrieve the most recent context for an Execution

GET /v2/Flows/{FlowSid}/Executions/{ExecutionSid}/Context

JSON context for executions

Retrieve the most recent context for an Execution.

Path parameters

  • FlowSid string Required

    The SID of the Flow with the Execution context to fetch.

  • ExecutionSid string Required

    The SID of the Execution context to fetch.

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • account_sid string | null

      The SID of the Account that created the resource

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^AC[0-9a-fA-F]{32}$.

    • The current state of the flow

    • execution_sid string | null

      The SID of the Execution

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^FN[0-9a-fA-F]{32}$.

    • flow_sid string | null

      The SID of the Flow

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^FW[0-9a-fA-F]{32}$.

    • url string(uri) | null

      The absolute URL of the resource

GET /v2/Flows/{FlowSid}/Executions/{ExecutionSid}/Context
curl \
 -X GET https://studio.twilio.com/v2/Flows/{FlowSid}/Executions/{ExecutionSid}/Context \
 --user "username:password"
Response examples (200)
{
  "account_sid": "string",
  "execution_sid": "string",
  "flow_sid": "string",
  "url": "https://example.com"
}