Executions
Get all executions
This API will give you all executions of that workspace which will be provided in header.
get
Authorizations
Query parameters
startnumberOptionalExample:
The page No
0limitnumber · min: 1 · max: 50OptionalExample:
The Page Size
10workflowIdstringOptional
Header parameters
X-TexAu-ContextstringRequired
Pass orgUserId and workspaceId as ‘{"orgUserId":"123","workspaceId":"123"}’
Responses
200
All execution 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 fetching all executions
get
/api/v1/public/executionsGET /api/v1/public/executions HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
X-TexAu-Context: text
Accept: */*
{
"success": true,
"message": "All execution fetched successfully",
"total": 1,
"data": [
{
"id": "The Execution ID",
"name": "The Execution Name"
}
]
}Get Execution By ID
This API will give you status and executionTime of the specific execution.
get
Authorizations
Path parameters
executionIdstringRequiredExample:
The executionId
5e9f8f8f8f8f8f8f8f8f8f8Header parameters
X-TexAu-ContextstringRequired
Pass orgUserId and workspaceId as ‘{"orgUserId":"123","workspaceId":"123"}’
Responses
200
Execution fetched successfully
application/json
401
Unauthorized access
403
Your plan does not have API access
404
Execution does not exist
422
Requested workspace does not belongs to you
500
Error in fetching execution
get
/api/v1/public/executions/{executionId}GET /api/v1/public/executions/{executionId} HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
X-TexAu-Context: text
Accept: */*
{
"success": true,
"message": "Execution fetched successfully",
"data": {
"id": "The Execution ID",
"name": "The Execution Name",
"workflowId": "The workflow ID",
"status": "The Execution Status",
"executionTimeUsed": "The Execution Time Used in ms"
}
}Last updated