POST api/contractItemapi/add?siteId={siteId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| siteId | globally unique identifier |
None. |
Body Parameters
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. |
Request 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": "1b4a242f-7378-4725-b2ce-ffb572d7fe77",
"selected_nameplate_id": "351bc4be-9c33-4d90-9f31-a5cfb260a837",
"active": true,
"contract_id": "c8e48ff9-91cb-433f-b818-6f00f79be860",
"id": "2ba8b8f3-13b4-40a6-b608-f61ea1f76717",
"physical_item_id": "9368426c-c1ca-4e87-a39b-891dbcb853a7",
"service_item_id": "f6f2681c-1771-4346-b076-85dbdef3d7f2",
"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>c8e48ff9-91cb-433f-b818-6f00f79be860</contract_id>
<id>2ba8b8f3-13b4-40a6-b608-f61ea1f76717</id>
<item_wash_max>1</item_wash_max>
<physical_item_id>9368426c-c1ca-4e87-a39b-891dbcb853a7</physical_item_id>
<quantity>1</quantity>
<service_item_id>f6f2681c-1771-4346-b076-85dbdef3d7f2</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>351bc4be-9c33-4d90-9f31-a5cfb260a837</selected_nameplate_id>
<selected_sticker_id>1b4a242f-7378-4725-b2ce-ffb572d7fe77</selected_sticker_id>
</contract_item>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
globally unique identifierResponse Formats
application/json, text/json
Sample:
"fa0c8c65-bad1-4c76-848d-3768c61431e0"
application/xml, text/xml
Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">fa0c8c65-bad1-4c76-848d-3768c61431e0</guid>