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": "d67308d1-29cc-4bc4-9517-1102d0169266",
"selected_nameplate_id": "67f8f87f-f047-4338-aa56-e1caff6f8c80",
"active": true,
"contract_id": "36b50a2d-fa81-45f3-a28c-fc8bb46aa9aa",
"id": "d234a558-c8f7-445c-bfba-b809f7289b15",
"physical_item_id": "f763b5eb-100c-4aed-9502-e5d73ffbcbd6",
"service_item_id": "3cd6f346-09c6-401d-890e-3f383b6b2b58",
"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>36b50a2d-fa81-45f3-a28c-fc8bb46aa9aa</contract_id>
<id>d234a558-c8f7-445c-bfba-b809f7289b15</id>
<item_wash_max>1</item_wash_max>
<physical_item_id>f763b5eb-100c-4aed-9502-e5d73ffbcbd6</physical_item_id>
<quantity>1</quantity>
<service_item_id>3cd6f346-09c6-401d-890e-3f383b6b2b58</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>67f8f87f-f047-4338-aa56-e1caff6f8c80</selected_nameplate_id>
<selected_sticker_id>d67308d1-29cc-4bc4-9517-1102d0169266</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:
"01a00256-3e6d-4b08-8988-32cb186129aa"
application/xml, text/xml
Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">01a00256-3e6d-4b08-8988-32cb186129aa</guid>