GET api/badgereadertypeapi/badgereadertype/{type}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| type | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
BadgeReaderTypeViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
None. |
|
| type | string |
Required String length: inclusive between 0 and 100 |
|
| description | string |
Required |
|
| active | boolean |
Required |
Response Formats
application/json, text/json
Sample:
{
"id": "b0c8c3cd-bc46-4c3c-8c4e-47fb1b5eaa19",
"type": "sample string 2",
"description": "sample string 3",
"active": true
}
application/xml, text/xml
Sample:
<badge_reader_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel"> <active>true</active> <description>sample string 3</description> <id>b0c8c3cd-bc46-4c3c-8c4e-47fb1b5eaa19</id> <type>sample string 2</type> </badge_reader_type>