New API version v6.12.5 has been released! 🎉
REST Documentation
GET Internal Rate

Get An Internal Rate

You can use this endpoint to retrieve a specific internal hourly rate for an employee.

Request

GET /api/v1/employees/:username/internal-rates/:id
curl --request GET \
     --url 'https://www.zep-online.de/zepinstanz/next/api/v1/employees/alexandrea.stroman/internal-rates/1' \
     --header 'Accept: application/json' \
     --header 'Authorization: Bearer {token}'

Response

{
	"data": {
		"id": 1,
		"employee_id": "alexandrea.stroman",
		"start_date": "2017-06-20",
		"internal_rate": "36.00",
		"note": null,
		"monthly_rate": null,
		"internal_rate_resets": null,
		"rate_type": {
			"id": 1,
			"name": "hourly rate"
		},
		"created": "2023-12-29T13:04:32.000000Z",
		"modified": "2023-12-29T13:04:32.000000Z"
	}
}