GET
/
catalog
/
applications
/
{catalog_ref_id}
/
skill
curl --request GET \
  --url http://localhost/api/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

200
application/json

Successful Response

The response is of type object.