POST api/Quote/AddBCCContacts?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
Collection of BccContact| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| StaffName | string |
None. |
|
| StaffFunction | string |
None. |
|
| string |
None. |
||
| Selected | boolean |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"StaffName": "sample string 2",
"StaffFunction": "sample string 3",
"Email": "sample string 4",
"Selected": true
},
{
"Id": 1,
"StaffName": "sample string 2",
"StaffFunction": "sample string 3",
"Email": "sample string 4",
"Selected": true
}
]
application/xml, text/xml
Sample:
<ArrayOfBccContact xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EasyQuoteServiceWCF.Models">
<BccContact>
<Email>sample string 4</Email>
<Id>1</Id>
<Selected>true</Selected>
<StaffFunction>sample string 3</StaffFunction>
<StaffName>sample string 2</StaffName>
</BccContact>
<BccContact>
<Email>sample string 4</Email>
<Id>1</Id>
<Selected>true</Selected>
<StaffFunction>sample string 3</StaffFunction>
<StaffName>sample string 2</StaffName>
</BccContact>
</ArrayOfBccContact>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.