GET
/
applications
/
skills
curl --request GET \
  --url http://localhost/api/v1/applications/skills \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "skill_id": "<string>",
      "artifact_name": "<string>",
      "artifact_type": "SKILL",
      "description": "<string>",
      "routing_description": "<string>",
      "icon": "<string>",
      "group_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "group_name": "<string>",
      "tenant_id": "<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: 50

Response

200
application/json

Successful Response

The response is of type object.