Skip to main content
Fetch List Of Skills Added In Archer
curl --request GET \
  --url https://{api_endpoint}/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

Successful Response

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