Help Center> Organizations> API Reference> API> Managing Delegated Administrators> Listing Services Managed by a Delegated Administrator Account
Updated on 2024-03-15 GMT+08:00

Listing Services Managed by a Delegated Administrator Account

Function

This API is used to list the services for which the specified account is a delegated administrator. It can be called only from the organization's management account or from a member account that is a delegated administrator for a cloud service.

URI

GET /v1/organizations/accounts/{account_id}/delegated-services

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

account_id

Yes

String

Unique ID of an account.

Maximum: 36

Table 2 Query Parameters

Parameter

Mandatory

Type

Description

limit

No

Integer

Maximum number of results on a page.

Minimum: 1

Maximum: 2000

Default: 200

marker

No

String

Pagination marker.

Minimum: 4

Maximum: 400

Request Parameters

Table 3 Request header parameters

Parameter

Mandatory

Type

Description

X-Security-Token

No

String

Security token (session token) of your temporary security credentials. If a temporary security credential is used, this header is required.

Minimum: 1

Response Parameters

Status code: 200

Table 4 Response body parameters

Parameter

Type

Description

delegated_services

Array of DelegatedServiceDto objects

List of the services for which the specified account is a delegated administrator.

page_info

PageInfoDto object

Pagination information.

Table 5 DelegatedServiceDto

Parameter

Type

Description

service_principal

String

Name of the service principal.

Minimum: 1

Maximum: 100

delegation_enabled_at

String

Date when the account became a delegated administrator for the service.

Table 6 PageInfoDto

Parameter

Type

Description

next_marker

String

Marker for the next set of results. If present, more output is available than is included in the current response. Use this value in the marker request parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until the next_marker response element comes back as null.

current_count

Integer

Number of items returned on the current page.

Minimum: 1

Maximum: 2000

Example Requests

Listing services managed by a delegated administrator account

GET https://{hostname}/v1/organizations/accounts/{account_id}/delegated-services

Example Responses

Status code: 200

Successful.

{
  "delegated_services" : [ {
    "service_principal" : "autoservice0922102321263V58H",
    "delegation_enabled_at" : "2022-09-22T02:23:21Z"
  } ],
  "page_info" : {
    "next_marker" : "ou-taowxgy4xbme6m4x3c2iijbxw7yj8fcw",
    "current_count" : 100
  }
}

Status Codes

Status Code

Description

200

Successful.

Error Codes

See Error Codes.