Get Routine Run Result
Retrieves a run result for a given request id.
Request
URI
GET
https://{api_host}/o11n-gateway-service/api/tenants/{tenantId}/requests/{requestId}/result
COPY
Path Parameters
string
tenantId
Required
the tenant id
string
requestId
Required
the request id
Responses
200
'Success' with the runResult
Returns
routineRunRunResult
of type(s)
*/*
{
"requestedBy": "string",
"correlation": {
"correlationType": "string",
"correlationId": "string"
},
"resultData": {
"entries": [
{
"value": {},
"key": "string"
}
]
},
"requestId": "string",
"runDetails": "string",
"resultHeader": {
"entries": [
{
"value": {},
"key": "string"
}
]
},
"runStatus": "string",
"createDate": "string",
"completeDate": "string"
}
string
requestedBy
Optional
requestedBy
object
correlation
Optional
Represents a Routine run correlation
object
resultData
Optional
Equivalent of java.util.Map
string
requestId
Optional
requestId
string
runDetails
Optional
runDetails
object
resultHeader
Optional
Equivalent of java.util.Map
string
runStatus
Optional
runStatus
Possible values are :
CANCELED,
COMPLETED,
RUNNING,
SUSPENDED,
WAITING,
WAITING_SIGNAL,
FAILED,
INITIALIZING,
string As date-time
As date-time
createDate
Optional
createDate
string As date-time
As date-time
completeDate
Optional
completeDate
404
'Not found' if no runResult with provided requestId
Operation doesn't return any data structure
Code Samples
COPY
curl -H 'Authorization: <value>' https://{api_host}/o11n-gateway-service/api/tenants/{tenantId}/requests/{requestId}/result