POST api/badgereadertypeapi/add?siteId={siteId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
siteId

globally unique identifier

None.

Body Parameters

BadgeReaderTypeViewModel
NameDescriptionTypeAdditional information
id

globally unique identifier

None.

type

string

Required

String length: inclusive between 0 and 100

description

string

Required

active

boolean

Required

Request Formats

application/json, text/json

Sample:
{
  "id": "9530f902-a15b-4dc5-90db-b4de7f16aaf2",
  "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>9530f902-a15b-4dc5-90db-b4de7f16aaf2</id>
  <type>sample string 2</type>
</badge_reader_type>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'BadgeReaderTypeViewModel'.

Response Information

Resource Description

globally unique identifier

Response Formats

application/json, text/json

Sample:
"60e5fb18-0751-4514-ad78-22374c794b86"

application/xml, text/xml

Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">60e5fb18-0751-4514-ad78-22374c794b86</guid>