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": "f7e7c949-e7d2-4250-8e7f-db5f766ad1d2", "DeviceAssignmentId": "ff8130e7-23ef-4e93-baaf-56059ae8ee22" }
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>f7e7c949-e7d2-4250-8e7f-db5f766ad1d2</BusinessUnitId> <Code>sample string 1</Code> <DeviceAssignmentId>ff8130e7-23ef-4e93-baaf-56059ae8ee22</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": "feeba3fc-4500-491d-9fe5-5f766bab1b9b", "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>feeba3fc-4500-491d-9fe5-5f766bab1b9b</DevicePlacementId> </DevicePlacementApiModel>