Updated on 2024-03-15 GMT+08:00

Listing Trusted Services

Function

This API returns a list of trusted services that are integrated with Organizations. 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/trusted-services

Table 1 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 2 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 3 Response body parameters

Parameter

Type

Description

trusted_services

Array of TrustedServiceDto objects

List of service principals for the services that are integrated with Organizations.

page_info

PageInfoDto object

Pagination information.

Table 4 TrustedServiceDto

Parameter

Type

Description

service_principal

String

Name of a trusted service.

Minimum: 1

Maximum: 100

enabled_at

String

Date when the trusted service was integrated with Organizations

Table 5 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 Trusted Services

GET https://{hostname}/v1/organizations/trusted-services

Example Responses

Status code: 200

Successful.

{
  "trusted_services" : [ {
    "service_principal" : "autoservice0922102321263V58H",
    "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.