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": "b8fce896-b3e7-4199-96dd-1f6c47dfd37a",
"selected_nameplate_id": "6437fd92-7e62-43ad-beb4-299c33ad13dd",
"active": true,
"department_id": "1a84f991-291b-45dd-b274-568bcdf0d561",
"id": "f13d1397-78db-4611-8c0e-d39849f74c29",
"physical_item_id": "dc14b01d-2126-42a7-a0b7-3ad696253ccf",
"service_item_id": "043de15f-619f-479a-9645-94d33da2b2fb",
"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>1a84f991-291b-45dd-b274-568bcdf0d561</department_id>
<id>f13d1397-78db-4611-8c0e-d39849f74c29</id>
<item_wash_max>1</item_wash_max>
<physical_item_id>dc14b01d-2126-42a7-a0b7-3ad696253ccf</physical_item_id>
<quantity>1</quantity>
<service_item_id>043de15f-619f-479a-9645-94d33da2b2fb</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>6437fd92-7e62-43ad-beb4-299c33ad13dd</selected_nameplate_id>
<selected_sticker_id>b8fce896-b3e7-4199-96dd-1f6c47dfd37a</selected_sticker_id>
</department_item>