GET api/Register
Eks: https://bne.rfidhuset.no/api/register. Henter dagens registreringer fra alle registrerte RFID lesere.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Alle registreringer som er logget i dag
RegisterDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Id |
integer |
None. |
| Tag |
Avlest RFID tag |
string |
None. |
| Antenna |
Antenne nr |
integer |
None. |
| ReadDate |
Tidspunkt for registrering |
date |
None. |
| ReaderId |
Leser ID |
integer |
None. |
| TagId |
Tag Id. Unikt for taggen. Ikke overskrivbar |
string |
None. |
| UId |
User memory. Minnebank 3. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Tag": "sample string 2",
"Antenna": 3,
"ReadDate": "2026-01-27T17:07:06.9529472+01:00",
"ReaderId": 1,
"TagId": "sample string 5",
"UId": "sample string 6"
}
text/xml
Sample:
{"Id":1,"Tag":"sample string 2","Antenna":3,"ReadDate":"2026-01-27T17:07:06.9529472+01:00","ReaderId":1,"TagId":"sample string 5","UId":"sample string 6"}
application/xml
Sample:
<RegisterDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/bne_api.Models"> <Antenna>3</Antenna> <Id>1</Id> <ReadDate>2026-01-27T17:07:06.9529472+01:00</ReadDate> <ReaderId>1</ReaderId> <Tag>sample string 2</Tag> <TagId>sample string 5</TagId> <UId>sample string 6</UId> </RegisterDTO>