POST api/quotation/savesecondContacts?assigneeCode={assigneeCode}&assigneeNo={assigneeNo}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| assigneeCode | string |
Required |
|
| assigneeNo | integer |
Required |
Body Parameters
Collection of SecondContactModel| Name | Description | Type | Additional information |
|---|---|---|---|
| AssigneeNo | integer |
None. |
|
| AssigneeCode | string |
None. |
|
| Contact | string |
None. |
|
| Telephone | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"AssigneeNo": 1,
"AssigneeCode": "sample string 2",
"Contact": "sample string 3",
"Telephone": "sample string 4"
},
{
"AssigneeNo": 1,
"AssigneeCode": "sample string 2",
"Contact": "sample string 3",
"Telephone": "sample string 4"
}
]
text/xml
Sample:
<ArrayOfSecondContactModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Peercore.Transport.Model">
<SecondContactModel>
<AssigneeCode>sample string 2</AssigneeCode>
<AssigneeNo>1</AssigneeNo>
<Contact>sample string 3</Contact>
<Telephone>sample string 4</Telephone>
</SecondContactModel>
<SecondContactModel>
<AssigneeCode>sample string 2</AssigneeCode>
<AssigneeNo>1</AssigneeNo>
<Contact>sample string 3</Contact>
<Telephone>sample string 4</Telephone>
</SecondContactModel>
</ArrayOfSecondContactModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |