Skip to main content

Get All Collections

GET 

/entitlement/api/v1/collection

Returns all Collections in a paginated format, sorted by ID desc.

info

This endpoint is available on the Prisma Cloud Darwin release only.

Request

Query Parameters

    exclude_asset_group boolean

    Exclude AssetGroup from response.

    page_size int32

    Number of records per page. Default is 50 and max is 500.

    order_by string

    Order by records based of ID, NAME, LAST_MODIFIED_TS.

    next_page_token string

    Token to fetch next page Collections.

Responses

Successful operation

Schema
    value object[]
  • Array [
  • id string

    Collection id

    name string

    Collection name

    description string

    Collection description

    createdBy string

    User who created the collection

    lastModifiedBy string

    User who last updated the collection

    createdTs int64

    Collection created date

    lastModifiedTs int64

    Collection last updated date

    assetGroups object

    AssetGroup that are part of Collection

    accountGroupIds string[]

    Possible values: <= 5

    accountIds string[]

    Possible values: <= 1000

    repositoryIds string[]

    Possible values: <= 1000

  • ]
  • nextPageToken string
Loading...