Flows
Get flow status
Get a flow’s status by flow ID. Use this endpoint to check whether a flow is running or not, or get details about the flow’s last run. The response includes the flow’s lifecycle status, disposition, and the status of the resources involved in the
GET
/
v2
/
flows
/
{id}
/
status
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
id
integer
requiredID of the flow
Response
200 - application/json
id
integer
requiredThe 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.