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": "3745e63b-3e30-4cb9-b8d3-8c04866e696b",
  "selected_nameplate_id": "0b9644f8-abc8-4185-9216-a419ffec5bd6",
  "active": true,
  "department_id": "192ecd53-0353-4250-85ac-ba7002f01646",
  "id": "b4332a30-c532-44c4-8555-6b1e60e90bc1",
  "physical_item_id": "d7905cbb-f106-42a4-afd3-f2d4fe971954",
  "service_item_id": "e490caf3-6ff7-466f-843a-5d3efd34051e",
  "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>192ecd53-0353-4250-85ac-ba7002f01646</department_id>
  <id>b4332a30-c532-44c4-8555-6b1e60e90bc1</id>
  <item_wash_max>1</item_wash_max>
  <physical_item_id>d7905cbb-f106-42a4-afd3-f2d4fe971954</physical_item_id>
  <quantity>1</quantity>
  <service_item_id>e490caf3-6ff7-466f-843a-5d3efd34051e</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>0b9644f8-abc8-4185-9216-a419ffec5bd6</selected_nameplate_id>
  <selected_sticker_id>3745e63b-3e30-4cb9-b8d3-8c04866e696b</selected_sticker_id>
</department_item>