POST api/CustomerDevices

Request Information

URI Parameters

None.

Body Parameters

CustomerDevice
NameDescriptionTypeAdditional information
DeviceID

globally unique identifier

None.

CustomerID

globally unique identifier

None.

CustomerAppID

globally unique identifier

None.

ApplicationID

globally unique identifier

None.

RegistrationID

string

None.

PushNotificationServiceName

string

None.

Handle

string

None.

Platform

string

None.

Version

string

None.

Manufacturer

string

None.

Model

string

None.

UUID

string

None.

Serial

string

None.

IsVirtual

boolean

None.

IsReceivingPushNotifications

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "DeviceID": "6e847205-5438-4ff8-b8c7-e502975675a1",
  "CustomerID": "63b2cda2-224e-40e1-91b3-6a6e5f11ea41",
  "CustomerAppID": "e22552d2-2f24-42ef-a730-6d0c3c192172",
  "ApplicationID": "b1ca16e4-ac42-4b37-b4ba-5333812c0ee5",
  "RegistrationID": "sample string 5",
  "PushNotificationServiceName": "sample string 6",
  "Handle": "sample string 7",
  "Platform": "sample string 8",
  "Version": "sample string 9",
  "Manufacturer": "sample string 10",
  "Model": "sample string 11",
  "UUID": "sample string 12",
  "Serial": "sample string 13",
  "IsVirtual": true,
  "IsReceivingPushNotifications": true
}

application/xml, text/xml

Sample:
<CustomerDevice xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <ApplicationID>b1ca16e4-ac42-4b37-b4ba-5333812c0ee5</ApplicationID>
  <CustomerAppID>e22552d2-2f24-42ef-a730-6d0c3c192172</CustomerAppID>
  <CustomerID>63b2cda2-224e-40e1-91b3-6a6e5f11ea41</CustomerID>
  <DeviceID>6e847205-5438-4ff8-b8c7-e502975675a1</DeviceID>
  <Handle>sample string 7</Handle>
  <IsReceivingPushNotifications>true</IsReceivingPushNotifications>
  <IsVirtual>true</IsVirtual>
  <Manufacturer>sample string 10</Manufacturer>
  <Model>sample string 11</Model>
  <Platform>sample string 8</Platform>
  <PushNotificationServiceName>sample string 6</PushNotificationServiceName>
  <RegistrationID>sample string 5</RegistrationID>
  <Serial>sample string 13</Serial>
  <UUID>sample string 12</UUID>
  <Version>sample string 9</Version>
</CustomerDevice>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.