Show Employee Payout
GET /services/api/v1/employee_payouts/{id}
Returns the specified employee payout.
Parameters
Parameter | Type | Description |
---|---|---|
id | string | The ID of the employee payout. |
Response
The requested employee payout.
- Example
- Schema
{
"id": "7bBJADz2",
"employee_id": "rQ6ZV6W5",
"from": "2024-08-25",
"to": "2024-12-18",
"gross": 4000.00,
"net": 2000.00,
"created_at": "2024-10-10T13:43:56.347Z",
"updated_at": "2024-10-14T10:06:50.112Z"
}
Attribute | Type | Required | Description |
---|---|---|---|
id | string | readonly | Id of the employee payout. |
created_at | datetime | readonly | Employee payout creation date. |
updated_at | datetime | readonly | Employee payout last updated at. |
employee_id | string | true | Id of the employee the payout belongs to. |
from | date | true | Start date of the employee payout (ISO8601). |
to | date | false | End date of the employee payout (ISO8601). Null if unlimited. |
Note that the fields above are only the fixed fields. All custom fields are provided by the Employee Payout Fields API endpoint.
Not Found.