Results
Get the result of an execution
This API will be used to get the result of any execution by using their executionId
get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
executionIdstringRequiredExample:
The executionId
5e9f8f8f8f8f8f8f8f8f8f8Header parameters
X-TexAu-ContextstringRequired
Pass orgUserId and workspaceId as ‘{"orgUserId":"123","workspaceId":"123"}’
Responses
200
Result fetched successfully
application/json
401
Unauthorized access
403
Your plan does not have API access
422
Requested workspace does not belongs to you
500
Error in retrieving results
get
/api/v1/public/results/{executionId}GET /api/v1/public/results/{executionId} HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
X-TexAu-Context: text
Accept: */*
{
"success": true,
"message": "Result fetched successfully",
"data": {}
}Last updated