List apprenticeship types
GET
/api/v1.1/{country_code}/apprenticeship-types/Returns a list of supported apprenticeship types.
Request
Path Params
country_code
string
required
Country code
Example:
gb
Match pattern:
[a-z]{2}
Query Params
page
integer
optional
A page number within the paginated result set.
Default:
1
page_size
integer
optional
Number of results to return per page.
Default:
5
Request samples
Responses
Request successful.(200)
Request successful.
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
count
integer
optional
Example:
1
next
string <uri> | null
optional
Example:
https://api.intelligence.adzuna.com/api/v1.1/gb/apprenticeship-types/?page=4
previous
string <uri> | null
optional
Example:
https://api.intelligence.adzuna.com/api/v1.1/gb/apprenticeship-types/?page=2
results
array[object (ApprenticeshipType) {2}]
optional
id
integer
required
>= 1<= 2147483647
Example:
15
name
string
required
<= 128 characters
Example:
Technical Apprenticeship (Level 8)
Example
{
"count": 1,
"next": "https://api.intelligence.adzuna.com/api/v1.1/gb/apprenticeship-types/?page=4",
"previous": "https://api.intelligence.adzuna.com/api/v1.1/gb/apprenticeship-types/?page=2",
"results": [
{
"id": 15,
"name": "Technical Apprenticeship (Level 8)"
}
]
}
Last modified: 4 months ago