Skip to main content
GET
/
v2
/
workflows
/
{id}
/
runs
List workflow runs
curl --request GET \
  --url https://api.portable.io/v2/workflows/{id}/runs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "status": "QUEUED",
      "started_at": "2023-11-07T05:31:56Z",
      "completed_at": "2023-11-07T05:31:56Z",
      "error_summary": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer<int>
required

ID

Query Parameters

limit
integer

Limit number of runs

Response

OK

data
object[]
required