Get progress of ongoing tasks
Retrieve the progress of the most recent reindex task /progress/category/insight-reindex/reindex
Retrieve the progress of an import task /progress/category/imports/{id}
.
string
Requiredstring
RequiredReturn the progress DTO
1
2
3
curl --request GET \
--url 'http://{baseurl}/rest/assets/1.0/progress/category/{category}/{resourceid}' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"progressInPercent": 2154,
"resourceId": "<string>",
"category": "<string>",
"status": "<string>",
"stepDescription": "<string>",
"currentStep": 2154,
"numberOfSteps": 2154,
"currentWorkUnits": 2154,
"currentWorkDescription": "<string>",
"currentStepTotalWorkUnits": 2154,
"totalWorkUnits": 2154,
"result": "<string>",
"resultData": {},
"resultMessage": "<string>",
"actor": "<string>",
"startDate": "<string>",
"finishedDate": "<string>",
"estimatedFinishDate": "<string>"
}
Rate this page: