POST api/departmentItemapi/add?siteId={siteId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| siteId | globally unique identifier |
None. |
Body Parameters
DepartmentItemViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| item_code | string |
None. |
|
| item_descriptions | Dictionary of string [key] and string [value] |
None. |
|
| selected_sticker_id | globally unique identifier |
None. |
|
| selected_nameplate_id | globally unique identifier |
None. |
|
| active | boolean |
Required |
|
| department_id | globally unique identifier |
Required |
|
| id | globally unique identifier |
None. |
|
| physical_item_id | globally unique identifier |
None. |
|
| service_item_id | globally unique identifier |
None. |
|
| item_wash_max | integer |
None. |
|
| quantity | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"item_code": "sample string 1",
"item_descriptions": {
"sample string 1": "sample string 2",
"sample string 3": "sample string 4"
},
"selected_sticker_id": "30e52174-9ed9-4941-a04d-f9a3b1652771",
"selected_nameplate_id": "d3d9025d-ddac-4d67-b5ca-ce67db408404",
"active": true,
"department_id": "14e024f8-97f6-4ae9-86ba-ea69d3de7fd8",
"id": "e8811443-b596-49a4-8567-2ba399f6eaf0",
"physical_item_id": "2468b783-0a6e-4033-8d8d-868639141cd0",
"service_item_id": "1193d0d0-7e8f-4640-a5d1-4de365c3ec65",
"item_wash_max": 1,
"quantity": 1
}
application/xml, text/xml
Sample:
<department_item xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
<active>true</active>
<department_id>14e024f8-97f6-4ae9-86ba-ea69d3de7fd8</department_id>
<id>e8811443-b596-49a4-8567-2ba399f6eaf0</id>
<item_wash_max>1</item_wash_max>
<physical_item_id>2468b783-0a6e-4033-8d8d-868639141cd0</physical_item_id>
<quantity>1</quantity>
<service_item_id>1193d0d0-7e8f-4640-a5d1-4de365c3ec65</service_item_id>
<item_code>sample string 1</item_code>
<item_descriptions xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 1</d2p1:Key>
<d2p1:Value>sample string 2</d2p1:Value>
</d2p1:KeyValueOfstringstring>
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 3</d2p1:Key>
<d2p1:Value>sample string 4</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</item_descriptions>
<selected_nameplate_id>d3d9025d-ddac-4d67-b5ca-ce67db408404</selected_nameplate_id>
<selected_sticker_id>30e52174-9ed9-4941-a04d-f9a3b1652771</selected_sticker_id>
</department_item>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
globally unique identifierResponse Formats
application/json, text/json
Sample:
"4dac03ed-66e6-4bc9-8bfb-2ee9934e797a"
application/xml, text/xml
Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">4dac03ed-66e6-4bc9-8bfb-2ee9934e797a</guid>