POST api/v{version}/Configuration/InsertParentDeviceInfo
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
version | string |
None. |
Body Parameters
ParentDeviceInfoModelName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
DeviceId | string |
None. |
|
UniqueIdentifier | string |
None. |
|
DeviceOS | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Id": 1, "DeviceId": "sample string 2", "UniqueIdentifier": "sample string 3", "DeviceOS": "sample string 4" }
application/xml, text/xml
Sample:
<ParentDeviceInfoModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/K12.Shared.Models"> <DeviceId>sample string 2</DeviceId> <DeviceOS>sample string 4</DeviceOS> <Id>1</Id> <UniqueIdentifier>sample string 3</UniqueIdentifier> </ParentDeviceInfoModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
OperationResultName | Description | Type | Additional information |
---|---|---|---|
result | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "result": "sample string 1" }
application/xml, text/xml
Sample:
<OperationResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/K12.Shared.Models"> <Result>sample string 1</Result> </OperationResult>