Skip to main content
GET
/
talent-training
/
api
/
v1
/
training-categories
List training-categories
curl --request GET \
  --url https://{host}/talent-training/api/v1/training-categories \
  --header 'Authorization: <authorization>'
{
  "summary": "A list of training-categories",
  "value": {
    "items": [
      {
        "id": 34,
        "name": "Management",
        "t9n": {
          "name": {
            "Fr": "Management",
            "Es": "Gestión"
          }
        }
      },
      {
        "id": 65,
        "name": "Languages",
        "t9n": {
          "name": {
            "Fr": "Langues",
            "Es": "Idiomas"
          }
        }
      }
    ],
    "count": 234,
    "prev": "~SGlnaA|LYJ77Z9Zqz|q6",
    "next": "!SGlnaA|A1kVrwDKrz|th"
  }
}

Headers

Authorization
string
required

API key. Value must be formatted like so: lucca application={api_key}.

Query Parameters

fields.root
enum<string>[]

Include the total number of items across all pages, as well as pointers to the previous and next pages.

Retrieve the training-categories whose name exactly matches the given value.

Minimum length: 1

Response

List of training-categories successfully retrieved.

count
integer | null

Total number of items across all pages. You need to include ?fields.root=count to your request to retrieve this.

Required range: x >= 0
prev
string | null

Cursor to the previous page. You need to include ?fields.root=prev in order to retrieve this.

next
string | null

Cursor to the next page. You need to include ?fields.root=next in order to retrieve this.

items
training-category · object[]
Maximum length: 100