GET
/
v1
/
accounts
/
{accountId}
/
workflows
/
{workflowId}
/
versions
/
{versionId}
/
metrics
Fetch A General Summary of Edges traveled
curl --request GET \
  --url https://api.sakari.io/v1/accounts/{accountId}/workflows/{workflowId}/versions/{versionId}/metrics \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "total": 123,
    "paths": [
      {
        "edge": "<string>",
        "count": 123
      }
    ]
  }
}

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

versionId
string
required

Workflow version to apply operations to

Query Parameters

start
string

General search term that specifies start date

end
string

General search term that specifies end date

Response

200
application/json

successful operation

The response is of type object.