GET
/
{workspaceId}
/
projects
/
{projectName}
/
run
/
{runId}
/
result
Run API - Async Result
curl --request GET \
  --url https://app.intuned.io/api/v1/workspace/{workspaceId}/projects/{projectName}/run/{runId}/result \
  --header 'x-api-key: <api-key>'
{
"runId": "123",
"status": "completed",
"result": {
"key1": "value1",
"key2": 42
},
"extendedPayloads": [
{
"api": "my-awesome-api",
"runId": "123",
"parameters": {
"param1": "value1",
"param2": 42
}
}
]
}

Authorizations

x-api-key
string
header
required

API Key used to authenticate your requests. How to create one.

Path Parameters

workspaceId
string<uuid>
required

Your workspace ID. How to find it?

projectName
string
required

Your project name. It is the name you provide when creating a project.

runId
string<nanoid>
required

Run ID

Response

200 - application/json

Run result with status and output data.

The response is of type object.