Get list of salary config lines
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
Path parameters
-
id
integer Required id
GET
/api-v1/payslip/{id}/lines
curl \
--request GET 'http://wyzio.app/api-v1/payslip/{id}/lines' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
Response examples (200)
[
{
"id": 42,
"isAutomaticallyAdded": true,
"name": {
"de": "string",
"en": "string",
"fr": "string",
"it": "string"
},
"number": 42,
"payslipId": 42,
"sign": "INCOME",
"type": "EMPLOYEE_LINE",
"usedInClaConfigWithinCalendarYear": true,
"usedInRegionConfigWithinCalendarYear": true,
"visible": true
}
]