Skip to main content
GET
/
api
/
v2
/
async-results
/
{asyncResultId}
Async result
curl --request GET \
  --url https://api.example.com/api/v2/async-results/{asyncResultId}
{
  "status": "<string>",
  "result": "<unknown>",
  "inputs": "<unknown>"
}

Path Parameters

asyncResultId
string
required

The ID of the asynchronous result to retrieve.

Response

Default Response

status
string
required

The current status of the asynchronous operation.

result
any | null

The result of the operation, if completed.

inputs
any | null

The inputs provided to the asynchronous operation.