GET
/
remuneration
/
api
/
fixed-natures
/
{id}
Get a fixed nature
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": "€"
    }
  ]
}

Headers

Authorization
string
required

API key. Value must be formatted like so: lucca application={api_key}.

Path Parameters

id
integer
required

The id of the nature

Response

OK

Fixed nature

id
integer

An unique identifier for the fixed nature

name
string

The display name

Required string length: 1 - 50
Example:

"Basic salary"

category
object | null

Fixed nature category

establishments
object[] | null

Establishments linked to the fixed nature