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

Get All Devices

You can use this endpoint to call up a paginated list of all devices.

Request

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

Response

{
	"data": [
		{
			"id": 1,
			"type": 1,
			"status": 1,
			"name": "maiores sit ex",
			"password": null,
			"min_time": null,
			"max_time": null,
			"track": 0,
			"display_config": null,
			"employees_count": 4,
			"categories_count": 1
		},
		{
			"id": 2
			// ...
		}
	]
}