POST api/packcenter/createplacement
Create new Placement for PC entity
Request Information
URI Parameters
None.
Body Parameters
Create Placement Request
CreatePlacementRequest| Name | 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": "9ceb9c0f-35a0-48a5-a2f5-42a00e6c3fdf",
"DeviceAssignmentId": "bb099bd9-d086-4e8c-980a-268b6de95812"
}
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>9ceb9c0f-35a0-48a5-a2f5-42a00e6c3fdf</BusinessUnitId> <Code>sample string 1</Code> <DeviceAssignmentId>bb099bd9-d086-4e8c-980a-268b6de95812</DeviceAssignmentId> </CreatePlacementRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Newly created Placement Id and Device Code
DevicePlacementApiModel| Name | Description | Type | Additional information |
|---|---|---|---|
| DevicePlacementId | globally unique identifier |
None. |
|
| DeviceCode | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"DevicePlacementId": "c284a5b7-edec-447f-b9a5-66b87c1b8276",
"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>c284a5b7-edec-447f-b9a5-66b87c1b8276</DevicePlacementId> </DevicePlacementApiModel>