Skip to main content
List available Skill languages
curl --request GET \
  --url https://{tenant_name}.{region}.techwolf.ai/taxonomy/skills/languages \
  --header 'Authorization: Bearer <token>'
{
  "languages": [
    "en_uk",
    "nl",
    "fr"
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

external_vendor
enum<string>
default:techwolf

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:
techwolf,
workday,
sap_attribute_library
Example:

"workday"

Response

OK

languages
string[]
required

The list of language codes available for Skills in the tenant's vocabulary. Each language code follows the internal format (e.g. en_uk, nl, fr).

Minimum string length: 1
Example:
["en_uk", "nl", "fr"]