POST api/packcenter/createplacement

Create new Placement for PC entity

Request Information

URI Parameters

None.

Body Parameters

Create Placement Request

CreatePlacementRequest
NameDescriptionTypeAdditional 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": "5151047c-f447-46c0-98cb-030de2d6609d",
  "DeviceAssignmentId": "cd3fa972-489d-473b-a81e-1885dc8a14e3"
}

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>5151047c-f447-46c0-98cb-030de2d6609d</BusinessUnitId>
  <Code>sample string 1</Code>
  <DeviceAssignmentId>cd3fa972-489d-473b-a81e-1885dc8a14e3</DeviceAssignmentId>
</CreatePlacementRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Newly created Placement Id and Device Code

DevicePlacementApiModel
NameDescriptionTypeAdditional information
DevicePlacementId

globally unique identifier

None.

DeviceCode

string

None.

Response Formats

application/json, text/json

Sample:
{
  "DevicePlacementId": "20fa7a72-5c86-4122-8ef7-09667fe9b355",
  "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>20fa7a72-5c86-4122-8ef7-09667fe9b355</DevicePlacementId>
</DevicePlacementApiModel>