Skip to main content
GET
/
orgs
/
{org_id}
/
analytics
/
workflows
Get Workflow Analytics
curl --request GET \
  --url https://api.useinvent.com/orgs/{org_id}/analytics/workflows \
  --header 'Authorization: Bearer <token>'
[
  {
    "workflow_id": "<string>",
    "workflow_name": "<string>",
    "total_runs": 123,
    "completed": 123,
    "failed": 123,
    "canceled": 123,
    "success_rate": 123
  }
]

Authorizations

Authorization
string
header
required

Bearer token authentication using your API key

Path Parameters

org_id
string
required

Query Parameters

from_date
string<date-time> | null
to_date
string<date-time> | null
page
number

Page number

take
number

Number of items to take

next
string

Next page token (Only used on special endpoints)

Response

200 - application/json
workflow_id
string
required
workflow_name
string
required
total_runs
number
required
completed
number
required
failed
number
required
canceled
number
required
success_rate
number
required