GET
/
v2
/
flows
/
{id}
/
status
curl --request GET \
  --url https://api.portable.io/v2/flows/{id}/status \
  --header 'Authorization: Bearer <token>'
{
  "id": 689422,
  "lifecycle": "running",
  "disposition": "none",
  "resources": [
    {
      "name": "events",
      "extracted": 1400,
      "analyzed": 0,
      "loaded": 0,
      "errors": []
    },
    {
      "name": "attendees",
      "extracted": 125,
      "analyzed": 0,
      "loaded": 0,
      "errors": []
    }
  ],
  "errors": [],
  "completedAt": null
}

Authorizations

Authorization
string
headerrequired

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

Path Parameters

id
integer
required

ID of the flow

Response

200 - application/json
id
integer
required

The ID of the flow

lifecycle
enum<string>

The lifecycle status of the flow

Available options:
PENDING,
RUNNING,
NOT_RUNNING
disposition
enum<string>

The disposition of the flow

Available options:
SUCCEEDED,
FAILED,
NONE
resources
object[]
errors
string[]

The errors that occurred during the flow's execution

completedAt
string

The timestamp marking when the execution of the flow was last completed. It will be set to null either if the flow is actively running or has never been initiated.