v1

latestOpenAPI 3.0.02026-07-14800227.2 KB
Compensation

Return a list of contract types.

This endpoint returns a paginated list of contract types. The URL params help to return more accurate results.

get/compensation/contract-types

Query parameters

isActiveboolean
Example:true

This field allows to return only the active contract types.

Headers

Authorizationstring required
Example:Bearer eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2FwaS5rZW5qby5pbyIsInN1YiI6IjYwZjBhOTE2MjE0OTg3MjU2YmU5YzhmZiIsImF1ZCI6Imh0dHBzOi8vYXBpLmtlbmpvLmlvIiwiaWF0IjoxNjI2Mzg1MTE1LCJuYmYiOjE2MjYzODUxMTUsImV4cCI6MTYyNjU1NzkxNSwiYWNjZXNzVHlwZSI6IkFwaUFjY2VzcyIsInNfb3JnSWQiOiI2MGYwNGVhN2RmN2JhMjFlY2U0YmYzYzIifQ.cxG_7dIS-VbmDXdJuLkekoyuyCIzQG2fMcgc0nkfbWE8cihhcb5FnALbQkjU9b5-qVcEoMHZlSuUA-jMEBMMVQ

A valid bearer token.

Response

OK.

Example response

{
  "data": [
    {
      "_id": "60a2db290da29e126a18789a",
      "name": "Permanent",
      "isActive": true
    },
    {
      "_id": "60a2db290da29e126a18789b",
      "name": "Junior",
      "isActive": true
    },
    {
      "_id": "60a2db290da29e126a18789c",
      "name": "Senior",
      "isActive": true
    },
    {
      "_id": "60a2db290da29e126a187891",
      "name": "External",
      "isActive": false
    }
  ],
  "metadata": {
    "count": 4,
    "offset": 1,
    "limit": 50,
    "total": 4
  }
}