Get a list of occupations

GET /api/v1/static/occupations

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
GET /api/v1/static/occupations
curl \
 -X GET https://api.plannrcrm.com/api/v1/static/occupations \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json"
Response examples (200)
{
  "data": [
    {
      "code": "AAB00011",
      "name": "Accountant"
    }
  ]
}