POST api/RegisterUsers

Request Information

URI Parameters

None.

Body Parameters

Users
NameDescriptionTypeAdditional information
first_name

string

None.

last_name

string

None.

token

string

None.

device

string

None.

Request Formats

application/json, text/json

Sample:
{
  "first_name": "sample string 1",
  "last_name": "sample string 2",
  "token": "sample string 3",
  "device": "sample string 4"
}

application/xml, text/xml

Sample:
<Users xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChannelAPI.Classes">
  <device>sample string 4</device>
  <first_name>sample string 1</first_name>
  <last_name>sample string 2</last_name>
  <token>sample string 3</token>
</Users>

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 'Users'.

Response Information

Resource Description

Collection of Object

None.

Response Formats

application/json, text/json

Sample:

Sample not available.