All Products
Search
Document Center

ApsaraDB RDS:GetStandAloneReports

Last Updated:Mar 05, 2026

Queries the individual inspection reports of all non-scheduled tasks under a specified user. Pagination is supported.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

The following table shows the authorization information corresponding to the API. The authorization information can be used in the Action policy element to grant a RAM user or RAM role the permissions to call this API operation. Description:

  • Operation: the value that you can use in the Action element to specify the operation on a resource.
  • Access level: the access level of each operation. The levels are read, write, and list.
  • Resource type: the type of the resource on which you can authorize the RAM user or the RAM role to perform the operation. Take note of the following items:
    • For mandatory resource types, indicate with a prefix of * .
    • If the permissions cannot be granted at the resource level, All Resources is used in the Resource type column of the operation.
  • Condition Key: the condition key that is defined by the cloud service.
  • Associated operation: other operations that the RAM user or the RAM role must have permissions to perform to complete the operation. To complete the operation, the RAM user or the RAM role must have the permissions to perform the associated operations.
OperationAccess levelResource typeCondition keyAssociated operation
rdsai:GetStandAloneReportsget
*All Resources
*
    none
none

Request parameters

ParameterTypeRequiredDescriptionExample
StartTimestringNo

The task start time based on which the reports are filtered. If you do not specify this parameter, all reports are returned.

2025-03-11T02:09:00Z
EndTimestringNo

The task end time based on which the reports are filtered. If you do not specify this parameter, all reports are returned.

2026-01-19T02:20:20Z
PageNumberlongNo

The page number. Pages start from 1. Default value: 1.

1
PageSizelongNo

The number of records on each page. Default value: 20. Maximum value: 100.

10

Response parameters

ParameterTypeDescriptionExample
object

Schema of Response

Successboolean

The returned results.

true
Messagestring

The response message.

Reportsarray<object>

The reports.

reportobject
TaskIdstring

The ID of the inspection report.

0f19210c-7bb8-4e38-a099-f94152df****
StartTimestring

The start time of the inspection. The time is in the YYYY-MM-DDTHH:mm:ssZ format.

2026-01-23T08:00:31Z
EndTimestring

The end time of the inspection. The time is in the YYYY-MM-DDTHH:mm:ssZ format.

2026-01-23T08:20:31Z
Statusstring

The status of the inspection task.

success
CreatedTimestring

The creation time of the inspection task.

2026-01-22T08:20:31Z
TotalCountlong

The total number of records.

20
PageNumberlong

The page number. Pages start from 1. Default value: 1.

1
PageSizelong

The number of records on each page. Default value: 20. Maximum value: 100.

10
RequestIdstring

The request ID.

FE9C65D7-930F-57A5-A207-8C396329****

Examples

Sample success responses

JSONformat

{
  "Success": true,
  "Message": "",
  "Reports": [
    {
      "TaskId": "0f19210c-7bb8-4e38-a099-f94152df****",
      "StartTime": "2026-01-23T08:00:31Z",
      "EndTime": "2026-01-23T08:20:31Z",
      "Status": "success",
      "CreatedTime": "2026-01-22T08:20:31Z\n"
    }
  ],
  "TotalCount": 20,
  "PageNumber": 1,
  "PageSize": 10,
  "RequestId": "FE9C65D7-930F-57A5-A207-8C396329****"
}

Error codes

HTTP status codeError codeError messageDescription
400InvalidParameterRequest parameter validation failed.Request parameter verification failed
403PermissionDeniedUser has no operation permission.User has no operation permission
403InvalidUserOrderThere is no valid order for this UID.There is no valid order for this UID
404TaskNotFoundThe resource of the specified ld does not exist.The resource of the specified ld does not exist.
500InternalErrorSystem internal exception.System internal exception

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
2026-02-05Add OperationView Change Details