Skip to main content
List All Skills Available From Catalog, Under An Application
curl --request GET \
  --url http://{api_endpoint}/api/v1/v1/catalog/applications/{catalog_ref_id}/skill \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "description": "<string>",
      "name": "<string>",
      "visibility": true,
      "state": "<string>",
      "group_id": "<string>",
      "catalog_ref_id": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "is_added": true
    }
  ],
  "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.

Path Parameters

catalog_ref_id
string
required

Query Parameters

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

Response

Successful Response

items
CatalogSkillResponse · 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

I