Skip to main content

List Folders of Parent (GCP)

POST 

/cloud/:cloud_type/parent/:parent_id/folders

List all the child folders of the given parent. A parent can be an organization resource or a folder resource.

The request body parameter is the content of the Service Account Key (JSON) file, which is required.

Request

Path Parameters

    cloud_type stringrequired

    Possible values: [gcp]

    Cloud type

    parent_id stringrequired

    GCP parent ID

Query Parameters

    nextPageToken string

    Token to request next page of folders

    pageSize int32

    Page size. Valid range is 1-300 inclusive. A page size of 0 returns a nextPageToken but no folders.

    parentType stringrequired

    Possible values: [folders, organizations]

    Parent type

Body

required

The content of the credentials object is the Service Account Key for your Google Cloud service account

    cloudAccount object
    accountId string

    GCP organization resource ID

    credentials object

    The content of the credentials object is the Service Account Key for your Google Cloud service account

    token_uri string
    private_key_id string
    client_x509_cert_url string
    project_id string
    auth_uri string
    auth_provider_x509_cert_url string
    client_email string
    private_key string
    type string
    client_id string

Responses

success

Schema
    id string

    Node ID

    type string

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

    Node type

    displayName string

    Display name

    parent string

    Parent

    hasChild boolean

    true = Has child

Loading...