Get the list of approval workflow executions by worksheet ID and row ID
Run in Apifox
Get the list of approval workflow executions associated with a specified worksheet row record, with pagination; the "complete" parameter can be used to filter completed or all executions.
Request Body Params application/json
{
"pageIndex" : 1 ,
"pageSize" : 20 ,
"complete" : false
} Request Code Samples
curl --location --request POST 'https://www.nocoly.com/v3/app/workflow//rows//approval/list' \
--header 'HAP-Appkey;' \
--header 'HAP-Sign;' \
--header 'Content-Type: application/json' \
--data-raw '{
"pageIndex": 1,
"pageSize": 20,
"complete": false
}' Responses application/json
Successfully returns the approval workflow execution list
{
"success" : true ,
"data" : {
"worksheetId" : "68b93ba4062a934ee388cf02" ,
"rowId" : "2ef442f5-ea33-4d43-af3d-b75e75818113" ,
"todoList" : [ ]
}
} Modified at 2026-03-30 07:15:12