POST accounts/devices

Captures account information such as device name, model, hardware, platform, and platform version.

Request Information

URI Parameters

None.

Body Parameters

DeviceRegistrationRequest
NameDescriptionTypeAdditional information
DeviceName

Name of the device.

string

Required

String length: inclusive between 0 and 50

HardwareIdentifier

Unique hardware identifier for the device.

string

Required

String length: inclusive between 0 and 50

Platform

Name of the platform for the device.

DevicePlatform

Required

PlatformVersion

Version of the platform.

string

String length: inclusive between 0 and 10

DeviceModel

Model name of the device.

string

String length: inclusive between 0 and 100

Request Formats

application/json, text/json

Sample:
{
  "DeviceName": "sample string 1",
  "HardwareIdentifier": "sample string 2",
  "Platform": "Android",
  "PlatformVersion": "sample string 3",
  "DeviceModel": "sample string 4"
}

Response Information

Resource Description

Captures account information such as device name, model, hardware, platform, and platform version.

DeviceRegistrationResponse
NameDescriptionTypeAdditional information
DeviceRegistrationIdentifier

Globally unique identifier (GUID) for the device.

globally unique identifier

Required

Response Formats

application/json, text/json

Sample:
{
  "DeviceRegistrationIdentifier": "40a960d0-d014-4d23-a914-83d8dc62de31"
}