GET api/departmentItemapi/departmentItem/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
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. |
Response 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": "bbee88ab-200a-45b8-8591-bd1613fa69ee",
"selected_nameplate_id": "c301d7ac-bce3-46d1-9034-0117309bdd49",
"active": true,
"department_id": "16dd299f-1d96-4d15-a5f6-becd5183c85a",
"id": "02ad52a7-7dc4-4412-9f68-2ad7ee4bf768",
"physical_item_id": "077c991a-4dc0-417c-995d-c48c94b0c716",
"service_item_id": "32698ecb-39d5-4251-bc0b-dc0ea1962c6e",
"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>16dd299f-1d96-4d15-a5f6-becd5183c85a</department_id>
<id>02ad52a7-7dc4-4412-9f68-2ad7ee4bf768</id>
<item_wash_max>1</item_wash_max>
<physical_item_id>077c991a-4dc0-417c-995d-c48c94b0c716</physical_item_id>
<quantity>1</quantity>
<service_item_id>32698ecb-39d5-4251-bc0b-dc0ea1962c6e</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>c301d7ac-bce3-46d1-9034-0117309bdd49</selected_nameplate_id>
<selected_sticker_id>bbee88ab-200a-45b8-8591-bd1613fa69ee</selected_sticker_id>
</department_item>