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

Get Internal Rates

You can use this endpoint to call up an employee's internal hourly rates.

Request

GET /api/v1/employees/:username/internal-rates
curl --request GET \
     --url 'https://www.zep-online.de/zepinstanz/next/api/v1/employees/alexandrea.stroman/internal-rates' \
     --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"
		},
		{
			"id": 2,
			// ...
		}
	]
}