POST api/sendContact
Request Information
URI Parameters
None.
Body Parameters
SendContactRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Message": "sample string 1"
}
text/html
Sample:
{"Message":"sample string 1"}
application/xml, text/xml
Sample:
<SendContactRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Services.Models"> <Message>sample string 1</Message> </SendContactRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BaseResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Object |
None. |
|
| ErrorMessage | string |
None. |
|
| Status | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {},
"ErrorMessage": "sample string 2",
"Status": true
}
text/html
Sample:
{"Data":{},"ErrorMessage":"sample string 2","Status":true}
application/xml, text/xml
Sample:
<BaseResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Services.Models"> <Data /> <ErrorMessage>sample string 2</ErrorMessage> <Status>true</Status> </BaseResponseModel>