Get salary line names for particular organization

GET /api-v1/contact/payslip-table/line-names/{organizationId}

Returns salary line names grouped by calendar year

Headers

Path parameters

Responses

GET /api-v1/contact/payslip-table/line-names/{organizationId}
curl \
 -X GET http://10.10.10.132/api-v1/contact/payslip-table/line-names/{organizationId} \
 -H "TARGET-ORGANIZATION-ID: 42" \
 -H "WEAL-TOKEN: string"
Response examples (200)
{
  "additionalProperty1": [
    {
      "calendarYear": 42,
      "description": {
        "de": "string",
        "en": "string",
        "fr": "string",
        "it": "string"
      },
      "id": 42,
      "isAutomaticallyAdded": true,
      "isHourlyWageLine": true,
      "number": 42,
      "payslipEntityId": 42,
      "systemLine": {
        "id": 42,
        "payslipLineType": "EMPLOYEE_LINE",
        "systemAdjustmentLineNumber": 42
      }
    }
  ],
  "additionalProperty2": [
    {
      "calendarYear": 42,
      "description": {
        "de": "string",
        "en": "string",
        "fr": "string",
        "it": "string"
      },
      "id": 42,
      "isAutomaticallyAdded": true,
      "isHourlyWageLine": true,
      "number": 42,
      "payslipEntityId": 42,
      "systemLine": {
        "id": 42,
        "payslipLineType": "EMPLOYEE_LINE",
        "systemAdjustmentLineNumber": 42
      }
    }
  ]
}