GET api/contractItemapi/contractItem/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
ContractItemViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| item_descriptions | Dictionary of string [key] and string [value] |
None. |
|
| item_code | string |
None. |
|
| selected_sticker_id | globally unique identifier |
None. |
|
| selected_nameplate_id | globally unique identifier |
None. |
|
| active | boolean |
Required |
|
| contract_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_descriptions": {
"sample string 1": "sample string 2",
"sample string 3": "sample string 4"
},
"item_code": "sample string 1",
"selected_sticker_id": "06265852-32ed-4dbf-8dad-c91e9af8d45c",
"selected_nameplate_id": "ad1422f2-d8d7-4ea1-8f99-d90df2c94d96",
"active": true,
"contract_id": "39a55587-2514-47b5-a61f-e4c711165b99",
"id": "322b678f-1c87-417c-8df4-ab2b5c8d0584",
"physical_item_id": "8fa5f1b1-eeb9-4d18-8f61-517c03ffd1d9",
"service_item_id": "7cf25d89-ab9b-4cbd-b3b3-a93a9b177091",
"item_wash_max": 1,
"quantity": 1
}
application/xml, text/xml
Sample:
<contract_item xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
<active>true</active>
<contract_id>39a55587-2514-47b5-a61f-e4c711165b99</contract_id>
<id>322b678f-1c87-417c-8df4-ab2b5c8d0584</id>
<item_wash_max>1</item_wash_max>
<physical_item_id>8fa5f1b1-eeb9-4d18-8f61-517c03ffd1d9</physical_item_id>
<quantity>1</quantity>
<service_item_id>7cf25d89-ab9b-4cbd-b3b3-a93a9b177091</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>ad1422f2-d8d7-4ea1-8f99-d90df2c94d96</selected_nameplate_id>
<selected_sticker_id>06265852-32ed-4dbf-8dad-c91e9af8d45c</selected_sticker_id>
</contract_item>