POST api/rfidreaderapi/add?siteId={siteId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| siteId | globally unique identifier |
None. |
Body Parameters
RfidReaderViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| duration | integer |
None. |
|
| id | globally unique identifier |
None. |
|
| ip | string |
None. |
|
| name | string |
Required |
|
| pc_id | globally unique identifier |
None. |
|
| power | decimal number |
None. |
|
| sector_entry | integer |
None. |
|
| sector_exit | integer |
None. |
|
| sensibility | decimal number |
None. |
|
| site_id | globally unique identifier |
Required |
|
| tag_filter | string |
None. |
|
| rfid_reader_type_id | globally unique identifier |
Required |
|
| active | boolean |
Required |
Request Formats
application/json, text/json
Sample:
{
"duration": 1,
"id": "2af44d96-9106-4bbb-babf-14821d0c3460",
"ip": "sample string 2",
"name": "sample string 3",
"pc_id": "63b65004-3bec-4e19-b6e9-661ff87706f1",
"power": 1.1,
"sector_entry": 1,
"sector_exit": 1,
"sensibility": 1.1,
"site_id": "9a8627eb-d8a1-405b-a81a-391c2bda5038",
"tag_filter": "sample string 4",
"rfid_reader_type_id": "4f5698ee-f46f-4778-a007-79918919b379",
"active": true
}
application/xml, text/xml
Sample:
<rfid_reader xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel"> <active>true</active> <duration>1</duration> <id>2af44d96-9106-4bbb-babf-14821d0c3460</id> <ip>sample string 2</ip> <name>sample string 3</name> <pc_id>63b65004-3bec-4e19-b6e9-661ff87706f1</pc_id> <power>1.1</power> <rfid_reader_type_id>4f5698ee-f46f-4778-a007-79918919b379</rfid_reader_type_id> <sector_entry>1</sector_entry> <sector_exit>1</sector_exit> <sensibility>1.1</sensibility> <site_id>9a8627eb-d8a1-405b-a81a-391c2bda5038</site_id> <tag_filter>sample string 4</tag_filter> </rfid_reader>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
globally unique identifierResponse Formats
application/json, text/json
Sample:
"f43a1b65-d434-41f1-8779-39a74197b302"
application/xml, text/xml
Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">f43a1b65-d434-41f1-8779-39a74197b302</guid>