Cases
Get Case Results
Retrieve the output variables of a finished case
GET
Fetch the output of a case once it has finished. Each entry in
results is an output variable from the workflow’s output schema with its resolved value.
If you provided a
callbackUrl in Execute Case, the same results are also POSTed to it when the case finishes — polling this endpoint is not required in that setup.Path Parameters
string
required
The case ID returned by Initiate Case
Headers
string
required
Your API authentication key
Response
object
required
The case’s output variables keyed by variable name.
If the case has not finished yet, the endpoint responds with HTTP
202 Accepted and no results. Poll Get Case Status until the case reaches a terminal status before fetching results.Errors
Accepted
The case has not finished yet — results are not available. Retry later.
Unauthorized
Missing, invalid, or expired API key.
Not Found
The case does not exist.