Skip to main content
GET
/
talent-training
/
api
/
v1
/
training-providers
List training-providers
curl --request GET \
  --url https://{host}/talent-training/api/v1/training-providers \
  --header 'Authorization: <authorization>'
{
  "summary": "A list of training-providers",
  "value": {
    "items": [
      {
        "id": 123,
        "name": "Example",
        "websiteHref": "https://www.example.org"
      }
    ],
    "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

Find an object through a search query.

Minimum length: 1
fields.root
enum<string>[]

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

Response

List of training-providers 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-provider · object[]
Maximum length: 100