curl --request GET \
--url https://{host}/remuneration/api/fixed-natures \
--header 'Authorization: <authorization>'{
"items": [
{
"id": 123,
"name": "Basic salary",
"category": {
"id": 123,
"code": "BASIC_SALARY"
},
"establishments": [
{
"id": 123,
"name": "Lucca FR",
"currencyCode": "EUR",
"currencySymbol": "€"
}
]
}
],
"next": "<string>",
"prev": "<string>",
"count": 123
}Retrieve all existing fixed natures
curl --request GET \
--url https://{host}/remuneration/api/fixed-natures \
--header 'Authorization: <authorization>'{
"items": [
{
"id": 123,
"name": "Basic salary",
"category": {
"id": 123,
"code": "BASIC_SALARY"
},
"establishments": [
{
"id": 123,
"name": "Lucca FR",
"currencyCode": "EUR",
"currencySymbol": "€"
}
]
}
],
"next": "<string>",
"prev": "<string>",
"count": 123
}API key. Value must be formatted like so: lucca application={api_key}.
Only return fixed natures linked to the specified establishments.
For paging. Number of items per page.
Two strategy might be used:
Properties that make sense on the collection level
next, prev, count Was this page helpful?