GET
/
catalog
/
applications
curl --request GET \
  --url http://localhost/api/v1/catalog/applications \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "ids": [],
      "catalog_ref_id": "<string>",
      "group_name": "<string>",
      "description": "<string>",
      "icon": "<string>",
      "hidden": true,
      "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
Maximum length: 255
sort
enum<string>
Available options:
ASC,
DESC

Response

200
application/json

Successful Response

The response is of type object.