Queries the run logs of acceleration tasks for a specified dataset.
Try it now
Test
RAM authorization
Request syntax
POST HTTP/1.1
Request parameters
|
Parameter |
Type |
Required |
Description |
Example |
| CubeId |
string |
Yes |
The ID of the dataset. |
7c7223ae-****-3c744528014b |
| StartDate |
string |
Yes |
The start time. The format is yyyy-MM-dd HH:mm:ss. |
2025-04-15 00:00:00 |
| EndDate |
string |
Yes |
The end time. The format is yyyy-MM-dd HH:mm:ss. |
2025-05-15 00:00:00 |
| PageNo |
integer |
No |
The page number. The default value is 1. |
1 |
| PageSize |
integer |
No |
The number of entries per page.
|
10 |
Response elements
|
Element |
Type |
Description |
Example |
|
object |
The response schema. |
||
| RequestId |
string |
The request ID. |
D8749D********80FF3B4 |
| Result |
object |
The result of the API request.
|
|
| TotalPages |
integer |
The total number of pages. |
1 |
| TotalNum |
integer |
The total number of entries. |
1 |
| PageNum |
integer |
The page number. |
1 |
| PageSize |
integer |
The number of entries per page. |
10 |
| Pre |
integer |
The previous page. A value of NULL or 0 indicates that no previous page exists. |
null |
| Next |
integer |
The next page. A value of NULL or 0 indicates that no next page exists. |
null |
| Data |
array<object> |
An array of acceleration task logs. |
|
|
object |
The acceleration task log. |
||
| JobId |
string |
The task ID. |
REST_A***************6a8 |
| JobHistoryId |
string |
The task history ID. |
REST_A***************6a8 |
| JonStartDate |
string |
The start time of the task. |
REST_A***************6a8 |
| JobStatus |
string |
The status of the task.
|
0 |
| Duration |
string |
The task duration in seconds. |
123 |
| Log |
string |
The log content. |
asdav************ |
| Success |
boolean |
Indicates whether the request was successful. Valid values:
|
true |
Examples
Success response
JSON format
{
"RequestId": "D8749D********80FF3B4",
"Result": {
"TotalPages": 1,
"TotalNum": 1,
"PageNum": 1,
"PageSize": 10,
"Pre": 0,
"Next": 0,
"Data": [
{
"JobId": "REST_A***************6a8",
"JobHistoryId": "REST_A***************6a8",
"JonStartDate": "REST_A***************6a8",
"JobStatus": "0",
"Duration": "123",
"Log": "asdav************"
}
]
},
"Success": true
}
Error codes
|
HTTP status code |
Error code |
Error message |
Description |
|---|---|---|---|
| 400 | Internal.System.Error | An internal system error occurred. | An internal system error occurred. |
| 400 | Cube.Not.Exist | The Cube does not exist. | The Cube does not exist. |
| 400 | Date.Format.Error | Date format conversion error. | Date format conversion error |
| 400 | Date.Check.Error | The end date cannot be greater than the start date. | End date cannot be greater than start date |
See Error Codes for a complete list.
Release notes
See Release Notes for a complete list.