Skip to main content

List Children of Parent (AWS)

POST 

/cas/v1/aws_account/:parent_id/children

For AWS only. Lists all the children of the given parent organizational unit (OU).The listed children include both OU resources and account resources.

Request

Path Parameters

    parent_id stringrequired

    Parent OU ID

Query Parameters

    accountNextPageToken string

    The page token to request the next page of accounts. The response from a previous request provides this token. If the token has characters outside the ASCII character set, URL encode the token before using it to make a request.

    accountFetchCount int32

    Total number of accounts to return. An accountFetchCount of 0 returns a nextPageToken but no accounts.

    ouNextPageToken string

    The page token to request next set of OUs. The response from a previous request provides this token. If the token has characters outside the ASCII character set, URL encode the token before using it to make a request.

    ouFetchCount int32

    Total number of OUs to return. An ouFetchCount of 0 returns a nextPageToken but no OUs.

Body

required

Cloud Account JSON

    accountId stringrequired

    AWS Account ID

    accountType stringrequired

    Possible values: [organization]

    Cloud Account Type

    enabled boolean

    Cloud Account Status. Whether or not the account is enabled

    name string

    Name

    roleArn stringrequired

    AWS Role ARN

    useTenantExternalId boolean

    Specify whether to use tenantExternalId, the default is false

Responses

success

Schema
    accountNextPageToken string

    Next page token for account

    ouNextPageToken string

    Next page token for Organizational Unit

    response object[]

    List of node info

  • Array [
  • displayName string

    Display name

    hasChild boolean

    Possible values: [true, false]

    Has Child

    id string

    Node ID

    parent string

    Parent

    type string

    Possible values: [ORG, FOLDER, PROJECT, SUBSCRIPTION, MANAGEMENT_GROUP, TENANT, ACCOUNT, OU]

    Node type

  • ]
Loading...