Get list of possible contribution table lines
Returns list of possible contribution table lines grouped by calendar year
GET
/api-v1/organization/contribution-table/lines/{countryId}
curl \
--request GET 'https://wyzio.app/api-v1/organization/contribution-table/lines/{countryId}' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "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": "string",
"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": "string",
"systemAdjustmentLineNumber": 42
}
}
]
}