Skip to main content
List All Apps Available In Catalog
curl --request GET \
  --url https://{api_endpoint}/api/v1/catalog/applications \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "group_name": "<string>",
      "ids": [],
      "catalog_ref_id": "<string>",
      "description": "<string>",
      "icon": "<string>",
      "hidden": false,
      "tenant_id": "<string>",
      "created_on": "2023-11-07T05:31:56Z",
      "created_by": "<string>",
      "last_modified_on": "2023-11-07T05:31:56Z",
      "last_modified_by": "<string>",
      "deleted_on": "2023-11-07T05:31:56Z",
      "deleted_by": "<string>"
    }
  ],
  "total": 123,
  "offset": 123,
  "limit": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

offset
integer
default:0
Required range: x >= 0
limit
integer
default:10
Required range: 1 <= x <= 100
search
string | null
Maximum string length: 255
sort
enum<string>
default:ASC
Available options:
ASC,
DESC

Response

Successful Response

items
ArtifactGroup · object[]
required

List of items fetched in the current page

total
integer
required

Total number of items available across all pages

offset
integer
required

The offset from which the items are fetched in the current page

limit
integer
required

Number of items to be fetched per page