Menu

Loop Task List

Usage Instructions

Get the loop task list (plans) with pagination support, up to a maximum of 100 items per page

Request Instructions

  • Method: POST
  • Endpoint: /api/v1/automation/planList

Request Parameters

Parameter Type Required Description
id string No Plan ID
name string No Plan name
status array No Status: 0 Not started; 1 Executing; 2 Paused; 3 Finished
template_type array No Template type: 1 Official template; 2 Custom template
remark string No Remarks
page int No Request page number, defaults to the first page if not provided
pagesize int No Number of items per page, defaults to 10 items/page if not provided

Request Example

json Copy
{
    "page":1,
    "pagesize": 10,
    "id":"xxx",
    "name":"xxx",
    "status": [1, 2],  
    "template_type": [1, 2],
    "remark":"xxx"
}

Response Example

json Copy
{
    "code": 200,
    "data": {
        "list": [
            {
                "id": "xxx",                            // ID
                "name": "xxx",                          // Plan name
                "remark": "xxx",                        // Remark
                "task_type_name": "Official Template",  // Template type
                "status": 1,                            // Status
                "created_at": "2026-01-12 17:04:22"     // Create time
            }
        ],
        "page": 1,
        "pagesize": 5,
        "total": 1,
        "total_page": 1
    },
    "message": "Success"
}
Previous
Create Loop Task
Next
Edit Loop Task
Last modified: 2026-01-23Powered by