Employees

List salaries

GET
/api/public/v3/employees/{employee_id}/salaries

Path Parameters

employee_id*integer

Response Body

application/json

application/json

curl -X GET "https://example.com/api/public/v3/employees/0/salaries"
{  "data": [    {      "id": 0,      "effective_on": "string",      "amount": "string",      "currency_code": "string",      "per": "string",      "overtime": true,      "comment": null,      "created_at": "string",      "updated_at": "string",      "pay_schedule": null    }  ]}