Get task information
GET/tasks/:taskId
Check the status and progress of an asynchronous task. The progress field ranges from 0 to 1, where 1 means the task is finished.
Task IDs are returned by product upload, update, and other asynchronous operations.
Request
Responses
- 200
- 404
OK
{
"projectId": 39074,
"projectName": null,
"origin": "LIVE-API",
"taskStatus": "FINISHED",
"name": "Api triggered full update",
"taskIncrementType": "STEP_BASED",
"failure": false,
"requestTime": 1744638748765,
"startTime": 1744638748766,
"finishTime": 1744638780000,
"progress": 1,
"logCounter": 5,
"id": "67fd131c34ff64223a195b14"
}
Not Found