GET
/
remuneration
/
api
/
variable-natures
/
{id}
curl --request GET \
  --url https://{host}/remuneration/api/variable-natures/{id} \
  --header 'Authorization: <authorization>'
{
  "id": 123,
  "name": "Annual bonus",
  "type": "Amount",
  "category": {
    "id": 123,
    "code": "BONUS"
  },
  "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

200
application/json

OK

The response is of type object.