Get list of salary lines for payroll

GET /api-v1/payroll/payroll-table/line-names/{calendarYear}/{organizationId}

Headers

Path parameters

Responses

GET /api-v1/payroll/payroll-table/line-names/{calendarYear}/{organizationId}
curl \
 -X GET http://wyzio.app/api-v1/payroll/payroll-table/line-names/{calendarYear}/{organizationId} \
 -H "TARGET-ORGANIZATION-ID: 42" \
 -H "WEAL-TOKEN: string"
Response examples (200)
[
  {
    "description": {
      "de": "string",
      "en": "string",
      "fr": "string",
      "it": "string"
    },
    "id": 42,
    "isAutomaticallyAdded": true,
    "isLinkedToAccount": true,
    "isShownOnSalarySlip": true,
    "lineName": {
      "de": "string",
      "en": "string",
      "fr": "string",
      "it": "string"
    },
    "localizations": {
      "de": "string",
      "en": "string",
      "fr": "string",
      "id": 42,
      "it": "string"
    },
    "number": 42,
    "parentPayslipLines": [
      42
    ],
    "payslipEntityId": 42,
    "payslipLineSign": "INCOME",
    "payslipLineType": "EMPLOYEE_LINE",
    "shouldIncludeVat": true,
    "specialAttributionType": "BASE_SALARY",
    "systemLine": {
      "id": 42,
      "payslipLineType": "EMPLOYEE_LINE",
      "systemAdjustmentLineNumber": 42
    },
    "touched": true
  }
]