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": "ccff37fe-6b4a-42b2-9f78-eee95a1eda2a",
"selected_nameplate_id": "d366957b-9039-4fb0-83ac-5294d373c954",
"active": true,
"contract_id": "b5e96a1e-6ef8-43e8-a516-cee1882fe602",
"id": "23aa18f1-7480-41f6-a92e-8a3f6da2b0f9",
"physical_item_id": "cdc0d61e-6921-4112-97d5-d222db02ebca",
"service_item_id": "8675f083-ee90-4dfa-9b3e-ce2fcde397bf",
"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>b5e96a1e-6ef8-43e8-a516-cee1882fe602</contract_id>
<id>23aa18f1-7480-41f6-a92e-8a3f6da2b0f9</id>
<item_wash_max>1</item_wash_max>
<physical_item_id>cdc0d61e-6921-4112-97d5-d222db02ebca</physical_item_id>
<quantity>1</quantity>
<service_item_id>8675f083-ee90-4dfa-9b3e-ce2fcde397bf</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>d366957b-9039-4fb0-83ac-5294d373c954</selected_nameplate_id>
<selected_sticker_id>ccff37fe-6b4a-42b2-9f78-eee95a1eda2a</selected_sticker_id>
</contract_item>