curl --request GET \
--url https://sandbox.api.fin.com/v1/occupations \
--header 'Authorization: Bearer <token>'{
"data": {
"pagination": {
"current_page": 1,
"per_page": 10,
"total_page": 87,
"total": 870
},
"occupations": [
{
"id": 1,
"title": "Software Engineer"
}
]
}
}Retrieve a list of available occupations
curl --request GET \
--url https://sandbox.api.fin.com/v1/occupations \
--header 'Authorization: Bearer <token>'{
"data": {
"pagination": {
"current_page": 1,
"per_page": 10,
"total_page": 87,
"total": 870
},
"occupations": [
{
"id": 1,
"title": "Software Engineer"
}
]
}
}Bearer token authentication. Obtain token from /v1/oauth/token endpoint
Number of items to return per page
1 <= x <= 512The page number to retrieve
x >= 1List of occupations retrieved successfully
Show child attributes