POST api/Print/AddMOSL_ContactDetails
Request Information
URI Parameters
None.
Body Parameters
PrintCls| Name | Description | Type | Additional information |
|---|---|---|---|
| name | string |
None. |
|
| ContactNo | string |
None. |
|
| ContctList | Collection of ContctCls |
None. |
Request Formats
application/json, text/json
Sample:
{
"name": "sample string 1",
"ContactNo": "sample string 2",
"ContctList": [
{
"name": "sample string 1",
"phone": "sample string 2"
},
{
"name": "sample string 1",
"phone": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<PrintCls xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Conference.Objects">
<ContactNo>sample string 2</ContactNo>
<ContctList>
<ContctCls>
<name>sample string 1</name>
<phone>sample string 2</phone>
</ContctCls>
<ContctCls>
<name>sample string 1</name>
<phone>sample string 2</phone>
</ContctCls>
</ContctList>
<name>sample string 1</name>
</PrintCls>
application/x-www-form-urlencoded
Sample:
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. |