Skip to main content
GET
/
v1
/
flow-runs
/
{flowRunId}
Get Run
curl --request GET \
  --url https://api.soharhealth.com/v1/flow-runs/{flowRunId} \
  --header 'Authorization: Bearer <token>'
{
  "flowRunId": "fb701ac1-1246-4860-b1ec-bd916b97a990",
  "status": "PENDING",
  "output": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

flowRunId
string
required

The Sohar ID for the Run

Example:

"fb701ac1-1246-4860-b1ec-bd916b97a990"

Response

A Run

flowRunId
string
required

The Sohar ID for the Run.

Example:

"fb701ac1-1246-4860-b1ec-bd916b97a990"

status
string
required

Current status of the Run.

Example:

"PENDING"

output
object

Run output when status is complete; otherwise null.