curl --request GET \
--url https://{host}/remuneration/api/fixed-natures/{id} \
--header 'Authorization: <authorization>'{
"id": 123,
"name": "Basic salary",
"category": {
"id": 123,
"code": "BASIC_SALARY"
},
"establishments": [
{
"id": 123,
"name": "Lucca FR",
"currencyCode": "EUR",
"currencySymbol": "€"
}
]
}Retrieve a single fixed nature from its identifier
curl --request GET \
--url https://{host}/remuneration/api/fixed-natures/{id} \
--header 'Authorization: <authorization>'{
"id": 123,
"name": "Basic salary",
"category": {
"id": 123,
"code": "BASIC_SALARY"
},
"establishments": [
{
"id": 123,
"name": "Lucca FR",
"currencyCode": "EUR",
"currencySymbol": "€"
}
]
}API key. Value must be formatted like so: lucca application={api_key}.
The id of the nature
OK
Was this page helpful?