All Products
Search
Document Center

ApsaraDB RDS:ListSkill

Last Updated:Mar 05, 2026

Obtains the user-defined skills and all system preset skills of the current user.

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:ListSkillnone
*All Resources
*
    none
none

Request parameters

ParameterTypeRequiredDescriptionExample
PageNumberlongNo

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

1
PageSizelongNo

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

30
LanguagestringNo

The languages supported by the skills.

  • zh-CN: Simplified Chinese
  • zh-TW: Traditional Chinese
  • en-US: English
  • ja-JP: Japanese
zh-CN

Response parameters

ParameterTypeDescriptionExample
object

Schema of Response

TotalCountinteger

The total number of returned records.

20
RequestIdstring

The request ID.

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

The current page number.

1
Dataarray<object>

The list of skills.

dataobject

The returned result.

Idstring

The unique identifier of the skill.

9a2ba261-7bb2-41a7-9c6e-1799fb5b****
Namestring

The name of the skill.

sql-review
Descriptionstring

The description of the skill.

Contentobject

The content of the skill.

Dbtypesarray

The list of database engines.

dbtypesstring

The database engine type.

MySQL
SkillTypestring

The type of the skill.

system
CreatedAtstring

The creation time of the skill.

2026-02-04T21:14:45Z
UpdatedAtstring

The update time of the skill.

2026-02-04T21:14:45Z
PageSizelong

The number of records returned on each page.

10

Examples

Sample success responses

JSONformat

{
  "TotalCount": 20,
  "RequestId": "FE9C65D7-930F-57A5-A207-8C396329****",
  "PageNumber": 1,
  "Data": [
    {
      "Id": "9a2ba261-7bb2-41a7-9c6e-1799fb5b****",
      "Name": "sql-review",
      "Description": "",
      "Content": {
        "test": "test",
        "test2": 1
      },
      "Dbtypes": [
        "MySQL"
      ],
      "SkillType": "system",
      "CreatedAt": "2026-02-04T21:14:45Z",
      "UpdatedAt": "2026-02-04T21:14:45Z"
    }
  ],
  "PageSize": 10
}

Error codes

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

Change history

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