Queries a list of tasks by page. You can also specify filter conditions to query tasks.
Debugging
Authorization information
Request parameters
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
ProjectEnv | string | No | The environment of the workspace. Valid values:
| Prod |
ProjectId | long | Yes | The workspace ID. | 100 |
Name | string | No | The name of the task. Fuzzy match is supported. | |
Owner | string | No | The account ID of the task owner. | 1000 |
TaskType | string | No | The type of the task. | ODPS_SQL |
RuntimeResource | string | No | The information about the resource group. Set this parameter to the ID of a resource group for scheduling. | S_res_group_524258031846018_1684XXXXXXXXX |
WorkflowId | long | No | The ID of the workflow to which the task belongs. | 1234 |
TriggerType | string | No | The trigger type. Valid values:
| Scheduler |
TriggerRecurrence | string | No | The running mode of the task after it is triggered. This parameter takes effect only if the TriggerType parameter is set to Scheduler. Valid values:
| Normal |
SortBy | string | No | The field that is used to sort tasks. This parameter is configured in the format of "Sorting field Sorting order". You can set the sorting order to Desc or Asc. If you do not specify the sorting order, Asc is used by default. Valid values:
| Id Desc |
PageSize | integer | No | The number of entries per page. Default value: 10. | 10 |
PageNumber | integer | No | The page number. Pages start from page 1. Default value: 1. | 1 |
Response parameters
Examples
Sample success responses
JSON
format
{
"RequestId": "22C97E95-F023-56B5-8852-B1A77A17XXXX\n",
"PagingInfo": {
"TotalCount": 100,
"PageSize": 10,
"PageNumber": 1,
"Tasks": [
{
"Name": "",
"Description": "test\n",
"WorkflowId": 1234,
"InstanceMode": "T+1",
"Type": "ODPS_SQL",
"BaselineId": 1234,
"Priority": 1,
"Timeout": 3600,
"RerunMode": "AllAllowed\n",
"RerunTimes": 3,
"RerunInterval": 60,
"Trigger": {
"Type": "Scheduler\n",
"Recurrence": "Normal\n",
"Cron": "00 00 00 * * ?",
"StartTime": "1970-01-01 00:00:00\n",
"EndTime": "9999-01-01 00:00:00\n"
},
"RuntimeResource": {
"ResourceGroupId": "S_res_group_524258031846018_1684XXXXXXXXX",
"Image": "i-xxxxxx\n",
"Cu": "0.25"
},
"DataSource": {
"Name": "mysql_test\n"
},
"Id": 1234,
"TenantId": 1,
"ProjectId": 100,
"ProjectEnv": "Prod",
"Owner": "1000",
"CreateTime": 1710239005403,
"ModifyTime": 1710239005403,
"CreateUser": "1000",
"ModifyUser": "1000"
}
]
}
}
Error codes
For a list of error codes, visit the Service error codes.
Change history
Change time | Summary of changes | Operation |
---|---|---|
2024-11-20 | The response structure of the API has changed | View Change Details |