Updated on 2025-11-06 GMT+08:00

Listing Registered Cloud Services

Function

This API is used to list registered cloud services.

Authorization Information

No identity policy-based permission required for calling this API.

URI

GET /v5/authorization-schemas/registered-services

Table 1 Query Parameters

Parameter

Mandatory

Type

Description

limit

No

Integer

Number of records displayed on each page. The value ranges from 1 to 200. The default value is 100.

Minimum: 1

Maximum: 200

Default: 100

marker

No

String

Pagination marker. The value contains 4 to 400 characters, including only letters, digits, and the following special characters: +/=-_

Minimum: 4

Maximum: 400

Request Parameters

None

Response Parameters

Status code: 200

Table 2 Response body parameters

Parameter

Type

Description

service_codes

Array of strings

List of service name abbreviations.

page_info

PageInfo object

Pagination information.

Table 3 PageInfo

Parameter

Type

Description

next_marker

String

If this parameter exists, there are subsequent items that are not displayed in the current response body. The value can be used as the pagination marker parameter for the next request to obtain information about the next page. This API can be repeatedly called until this field does not exist.

current_count

Integer

Number of items returned on this page.

Example Requests

Listing registered cloud services

GET https://{endpoint}/v5/authorization-schemas/registered-services

Example Responses

Status code: 200

Successful

{
  "service_codes" : [ "service1", "service2" ],
  "page_info" : {
    "next_marker" : "marker",
    "current_count" : 2
  }
}

Status Codes

Status Code

Description

200

Successful

Error Codes

See Error Codes.