New API version v7.4.2 has been released! 🎉
REST Documentation
GET Device Details

Get Device Details

You can use this endpoint to call up a single device.

Request

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

Response

{
	"data": {
		"id": 101,
		"type": 2,
		"status": 2,
		"name": "App ZEP Clock",
		"password": null,
		"min_time": null,
		"max_time": null,
		"track": 0,
		"display_config": null,
		"employees": [
			{
				"employee_id": "john.doe"
			}
		],
		"categories": []
	}
}