Updated on 2026-07-22 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

Definition:

Number of records displayed per page.

Constraints:

N/A

Range:

The value ranges from 1 to 200.

Default Value:

The default value is 100.

marker

No

String

Definition:

Pagination marker automatically generated by the service to mark the start position of this request. The value can be obtained from next_marker in the response body of the previous pagination request.

Constraints:

The value contains 4 to 400 characters. Only letters, digits, plus signs (+), slashes (/), equal signs (=), hyphens (-), and underscores (_) are allowed.

Range:

N/A

Default Value:

N/A

Request Parameters

None

Response Parameters

Status code: 200

Table 2 Response body parameters

Parameter

Type

Description

service_codes

Array of strings

Definition:

List of service name abbreviations.

Range:

N/A

page_info

page_info object

Definition:

Pagination information.

Range:

N/A

Table 3 page_info

Parameter

Type

Description

next_marker

String

Definition:

Start position marker for the next pagination invoking, which is automatically generated by the service.

Range:

N/A

current_count

Integer

Definition:

Number of records returned on this page.

Range:

N/A

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.