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 "WEAL-TOKEN: string" \
--header "TARGET-ORGANIZATION-ID: 42"
Response examples (200)
{
"additionalProperty1": [
{
"id": 42,
"number": 42,
"description": {
"en": "string",
"fr": "string",
"de": "string",
"it": "string"
},
"systemLine": {
"id": 42,
"payslipLineType": "string",
"systemAdjustmentLineNumber": 42
},
"payslipEntityId": 42,
"calendarYear": 42,
"isAutomaticallyAdded": true,
"isHourlyWageLine": true
}
],
"additionalProperty2": [
{
"id": 42,
"number": 42,
"description": {
"en": "string",
"fr": "string",
"de": "string",
"it": "string"
},
"systemLine": {
"id": 42,
"payslipLineType": "string",
"systemAdjustmentLineNumber": 42
},
"payslipEntityId": 42,
"calendarYear": 42,
"isAutomaticallyAdded": true,
"isHourlyWageLine": true
}
]
}