Get Employee Transponders
You can use this endpoint to retrieve a list of RFID transponders assigned to a specific employee. These transponders are used for time tracking at terminals.
Request
GET /api/v1/employees/:username/transponders
curl --request GET \
--url 'https://www.zep-online.de/zepinstanz/next/api/v1/employees/oliver/transponders' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {token}'
Response
{
"data": [
{
"rfid": "0458B5FA",
"employee_id": "oliver",
"created": "2018-08-15T12:50:45.000000Z",
"modified": "2023-06-12T09:46:12.000000Z"
},
{
"rfid": "0267C8D2",
"employee_id": "oliver",
"created": "2019-03-22T08:15:30.000000Z",
"modified": "2023-06-12T09:46:12.000000Z"
}
]
}
Path Parameters
- Name
username
- Type
- string
- Description
The username of the employee whose transponders you want to retrieve.
Response Fields
- Name
rfid
- Type
- string
- Description
The unique RFID identifier of the transponder.
- Name
employee_id
- Type
- string
- Description
The username of the employee to whom the transponder is assigned.
- Name
created
- Type
- string
- Description
The date and time when the transponder was assigned to the employee in ISO 8601 format.
- Name
modified
- Type
- string
- Description
The date and time when the transponder assignment was last modified in ISO 8601 format.