Skip to main content
GET
PromptJuggler PHP SDK

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

Workflow run status and results.

id
string<uuid>
required

Workflow run ID.

status
enum<string>
required

Current run status.

Available options:
pending,
completed,
failed
createdAt
string<date-time>
required

Timestamp when the run was created.

outputs
object
required

Map of output node names to their values. Empty object while pending.

errors
string[]
required

List of error messages from failed nodes. Empty array on success.

finishedAt
string<date-time> | null

Timestamp when the run finished. Null while the run is pending.

tokenUsage
object | null

Aggregated token usage across the workflow run. Null while pending.

cost
object | null

Aggregated cost breakdown across the workflow run. Null while pending.