POST api/packcenter/createplacement
Create new Placement for PC entity
Request Information
URI Parameters
None.
Body Parameters
Create Placement Request
CreatePlacementRequestName | Description | Type | Additional information |
---|---|---|---|
Code |
Entity Code |
string |
None. |
BusinessUnitId |
Business Unit Id |
globally unique identifier |
None. |
DeviceAssignmentId |
Device Assignment Id |
globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "Code": "sample string 1", "BusinessUnitId": "11c0547c-b6e9-4925-9dd3-e0adf0f4f40d", "DeviceAssignmentId": "4e8a8361-77c4-4c87-a36a-065811ae82d7" }
application/xml, text/xml
Sample:
<CreatePlacementRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Deufol.CPCNL.API.Classes"> <BusinessUnitId>11c0547c-b6e9-4925-9dd3-e0adf0f4f40d</BusinessUnitId> <Code>sample string 1</Code> <DeviceAssignmentId>4e8a8361-77c4-4c87-a36a-065811ae82d7</DeviceAssignmentId> </CreatePlacementRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Newly created Placement Id and Device Code
DevicePlacementApiModelName | Description | Type | Additional information |
---|---|---|---|
DevicePlacementId | globally unique identifier |
None. |
|
DeviceCode | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "DevicePlacementId": "c388a6a3-d21c-4e69-8c55-0943e9896c31", "DeviceCode": "sample string 2" }
application/xml, text/xml
Sample:
<DevicePlacementApiModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Deufol.CPCNL.BLL.Models.ApiModels"> <DeviceCode>sample string 2</DeviceCode> <DevicePlacementId>c388a6a3-d21c-4e69-8c55-0943e9896c31</DevicePlacementId> </DevicePlacementApiModel>