GET
/
v1
/
accounts
/
{accountId}
/
workflows
/
{workflowId}
/
executions
/
{executionId}
Fetch A Detailed Summary for a Workflow Execution for a Contact
curl --request GET \
  --url https://api.sakari.io/v1/accounts/{accountId}/workflows/{workflowId}/executions/{executionId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "<string>",
    "status": "completed",
    "version": {
      "id": "<string>",
      "name": "<string>"
    },
    "start": "2023-11-07T05:31:56Z",
    "end": "2023-11-07T05:31:56Z",
    "steps": [
      {
        "id": "<string>",
        "start": "2023-11-07T05:31:56Z",
        "end": "2023-11-07T05:31:56Z",
        "node": {
          "id": "<string>",
          "type": {
            "id": "<string>",
            "type": "<string>",
            "group": "<string>",
            "name": "<string>",
            "label": "<string>",
            "description": "<string>",
            "icon": "<string>",
            "properties": [
              {
                "label": "<string>",
                "helperText": "<string>",
                "link": "<string>",
                "type": "basictext",
                "mandatory": true,
                "args": [
                  "<string>"
                ],
                "options": [
                  {
                    "value": "<string>",
                    "label": "<string>"
                  }
                ],
                "min": 123,
                "max": 123,
                "defaultValue": "<string>",
                "name": "<string>",
                "conditions": [
                  {
                    "property": "<string>",
                    "comparator": "<string>",
                    "value": "<string>"
                  }
                ]
              }
            ],
            "outputs": [
              {
                "default": true,
                "path": "<string>",
                "name": "<string>",
                "dataType": "boolean"
              }
            ],
            "validation": {
              "numEdgeCondition": "exactly",
              "numEdges": 123,
              "edges": [
                {
                  "type": "timeout",
                  "value": {
                    "mandatory": true,
                    "editable": true,
                    "value": "<string>",
                    "default": "<string>"
                  },
                  "multiple": true,
                  "defaultEdge": true
                }
              ]
            },
            "supportsReenrollment": true,
            "color": "<string>",
            "status": "<string>",
            "supportLink": "<string>"
          },
          "context": {}
        },
        "edge": {
          "id": "<string>",
          "type": "standard",
          "source": "<string>",
          "target": "<string>",
          "value": "<string>"
        }
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

accountId
string
required

Account to apply operations to

workflowId
string
required

Workflow to apply operations to

executionId
string
required

Id for a workflow Execution

Response

200
application/json

successful operation

The response is of type object.