Skip to main content
Export Skill info
curl --request POST \
  --url https://{tenant_name}.{region}.techwolf.ai/export/skills \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "starting_after": "4cbdbabe-5644-4423-8157-520f8a2f429a"
}
'
{
  "has_next": true,
  "records": [
    {
      "skill_id": "a3903505-eb84-42dc-a79f-5e7b1fe897b7",
      "skill_name": "Python Programming",
      "skill_description": "SQL is a standard database query language. The Skill \"SQL\" requires the ability to write and execute SQL queries.",
      "techwolf_domain": "Software Development",
      "taxonomy_domain_id": "a3903505-eb84-42dc-a79f-5e7b1fe897b7",
      "taxonomy_domain_name": "Computer Science",
      "taxonomy_skill_cluster_id": "a3903505-eb84-42dc-a79f-5e7b1fe897b7",
      "taxonomy_skill_cluster_name": "Programming Languages",
      "properties": {
        "sap_status": {
          "value": "active"
        }
      }
    }
  ],
  "next_starting_after": "9b9d6bcd-bbfd-4b2d-9b5d-ab8dfbbd4b1e"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

vocab_language
enum<string>
default:en_uk

The display language used for Skill names and descriptions. Altering the vocabulary language does not change Skill attributes; it solely changes the way it is displayed. If not specified, the default language (en_uk) will be used. The en language is an alias for en_uk.

Available options:
en,
en_uk,
en_us,
de,
fr,
nl
external_vendor
enum<string>

The external vendor vocabulary you want to see the Skills displayed in. This will only work for vendors that are activated on your tenant.

Available options:
workday,
sap_attribute_library
Example:

"workday"

include
enum<string>[]

Additional Skill info attributes that will be included in the response body. This query parameter can be added multiple times to include more attributes.

Available options:
properties
Example:
["properties"]

Body

application/json
starting_after
string

The universally unique ID of the Skill to continue looking from. This consists of alphanumeric characters, hyphens and underscores.

Maximum string length: 100
Example:

"4cbdbabe-5644-4423-8157-520f8a2f429a"

Response

OK

has_next
boolean
required

True when there is more data after this page.

Example:

true

records
(No Taxonomy or 3-level Taxonomy · object | 4-level Taxonomy · object)[]

A list containing for every Skill in the system the available data, including descriptions and their location in the Taxonomy.

Default structure for Skill.

next_starting_after
string

The next starting_after value for pagination.

Maximum string length: 100
Example:

"9b9d6bcd-bbfd-4b2d-9b5d-ab8dfbbd4b1e"