Skip to main content

Get the Task Operation History

Use this API to retrieve a paginated list of operation history records for a specified task.

Request URL: /openapi/v1/workflow/log

HTTP method: GET

Request parameters

ParameterTypeRequiredDescriptionExample
workflowIdStringYesTask ID."st-d5e200daj7wk"
currentIntegerNoPage number, starting from 1. Default: 1.1
pageSizeIntegerNoNumber of items per page. Default: 10.10

Response parameters

ParameterTypeDescriptionExample
successBooleanWhether the request was successful.true
requestIdStringRequest ID.Lu5t1VBS-cihcmCEndbey3REdcgq7SWX
dataArrayList of operation details.N/A
createTimeStringOperation time.2025-10-23 06:54:51Z
operatorStringID of the operator.1030799091781335
operateTypeStringOperation type.Auto Approved
operateDetailStringOperation details.According to the policy, no approval required.
errorCodeStringError code.N/A
messageStringError message.N/A
currentIntegerCurrent page number.1
pageSizeIntegerNumber of items per page.10
totalIntegerTotal number of records.1

Successful response example

{
"success": true,
"requestId": "Qr0w7PGE-IONIlHRnJHLl2RIdIPb6KUN",
"data": [{
"creteTime": "2025-10-10 03:37:28Z",
"operator": "system",
"operateType": "Auto Approved",
"operateDetail": "According to the policy, no approval required."
}],
"current": 1,
"pageSize": 10,
"total": 1
}