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
header
required

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

Path Parameters

id
integer
required

ID of the flow

Examples:

568971

Response

200
application/json

OK

The response is of type object.