Skip to main content
GET
/
api
/
v1
/
workflowruns
/
{id}
Get a workflow run by ID
curl --request GET \
  --url https://promptjuggler.com/api/v1/api/v1/workflowruns/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "pending",
  "createdAt": "2023-11-07T05:31:56Z",
  "outputs": {},
  "errors": [
    "<string>"
  ],
  "finishedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string<uuid>
required

Workflow run ID

Response

Workflow Run

id
string<uuid>
required
status
enum<string>
required
Available options:
pending,
completed,
failed
createdAt
string<date-time>
required
outputs
object
required
errors
string[]
required
finishedAt
string<date-time> | null