GET api/departmentItemapi/departmentItem/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

DepartmentItemViewModel
NameDescriptionTypeAdditional 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": "cd43cec0-5986-4a18-85d0-637def08d06e",
  "selected_nameplate_id": "e00cef41-2630-4e73-aa4f-bdfe9a2ac29c",
  "active": true,
  "department_id": "1e4c3cc3-80a6-4d40-9126-42f8b5fed313",
  "id": "6f72d9c9-e343-460e-bc46-b0c703fe9350",
  "physical_item_id": "8a5a717e-e5dd-4be2-923a-433bc620d38c",
  "service_item_id": "6d408035-79c5-422f-a598-ef9553e54fd4",
  "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>1e4c3cc3-80a6-4d40-9126-42f8b5fed313</department_id>
  <id>6f72d9c9-e343-460e-bc46-b0c703fe9350</id>
  <item_wash_max>1</item_wash_max>
  <physical_item_id>8a5a717e-e5dd-4be2-923a-433bc620d38c</physical_item_id>
  <quantity>1</quantity>
  <service_item_id>6d408035-79c5-422f-a598-ef9553e54fd4</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>e00cef41-2630-4e73-aa4f-bdfe9a2ac29c</selected_nameplate_id>
  <selected_sticker_id>cd43cec0-5986-4a18-85d0-637def08d06e</selected_sticker_id>
</department_item>