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": "84d5979f-0dbf-4228-b682-671455f185fb",
"selected_nameplate_id": "a4c390de-e203-4707-813b-842d8a80c55e",
"active": true,
"contract_id": "ddef6b28-07ce-48ac-8c16-6532a8ae2eef",
"id": "e9f198e4-8885-45b0-ace2-355da7c619be",
"physical_item_id": "76ae0271-d5cd-4f1d-8e1d-b9a60ec5bf0c",
"service_item_id": "aeb79e3f-0d74-4aad-8784-496c5e1e3aa2",
"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>ddef6b28-07ce-48ac-8c16-6532a8ae2eef</contract_id>
<id>e9f198e4-8885-45b0-ace2-355da7c619be</id>
<item_wash_max>1</item_wash_max>
<physical_item_id>76ae0271-d5cd-4f1d-8e1d-b9a60ec5bf0c</physical_item_id>
<quantity>1</quantity>
<service_item_id>aeb79e3f-0d74-4aad-8784-496c5e1e3aa2</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>a4c390de-e203-4707-813b-842d8a80c55e</selected_nameplate_id>
<selected_sticker_id>84d5979f-0dbf-4228-b682-671455f185fb</selected_sticker_id>
</contract_item>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
globally unique identifierResponse Formats
application/json, text/json
Sample:
"cbc16a32-e384-48f7-96b6-391e6fb2e8cd"
application/xml, text/xml
Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">cbc16a32-e384-48f7-96b6-391e6fb2e8cd</guid>