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": "4b098354-66c1-4755-b502-ae833ab19606",
"selected_nameplate_id": "2275b467-fa7b-4efb-a003-21641fe20ebe",
"active": true,
"department_id": "fb95d40a-e0f1-4454-bb7f-dbacb6ec0e02",
"id": "906a8864-29c3-46f4-b256-e4eba92dcffc",
"physical_item_id": "66df8347-75ac-49ff-a796-9f6c88aadbf4",
"service_item_id": "b514d8ab-8e52-4bb4-876a-7853a178a1d8",
"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>fb95d40a-e0f1-4454-bb7f-dbacb6ec0e02</department_id>
<id>906a8864-29c3-46f4-b256-e4eba92dcffc</id>
<item_wash_max>1</item_wash_max>
<physical_item_id>66df8347-75ac-49ff-a796-9f6c88aadbf4</physical_item_id>
<quantity>1</quantity>
<service_item_id>b514d8ab-8e52-4bb4-876a-7853a178a1d8</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>2275b467-fa7b-4efb-a003-21641fe20ebe</selected_nameplate_id>
<selected_sticker_id>4b098354-66c1-4755-b502-ae833ab19606</selected_sticker_id>
</department_item>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
globally unique identifierResponse Formats
application/json, text/json
Sample:
"a4032c48-8828-4f56-942d-648983a95686"
application/xml, text/xml
Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">a4032c48-8828-4f56-942d-648983a95686</guid>