POST api/discoverytours/comms/contactus
Relays contact us forms to staff email
Request Information
URI Parameters
None.
Body Parameters
ContactUsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
Name |
string |
None. |
| EmailAddress |
EmailAddress |
string |
None. |
| Tour |
Tour |
string |
None. |
| Comment |
Comment |
string |
None. |
| To |
To |
string |
None. |
| Bcc |
Bcc |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"name": "sample string 1",
"emailAddress": "sample string 2",
"tour": "sample string 3",
"comment": "sample string 4",
"to": "sample string 5",
"bcc": "sample string 6"
}
application/xml, text/xml
Sample:
<ContactUsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HSEY.API.Models.DiscoveryTours.Comms"> <Bcc>sample string 6</Bcc> <To>sample string 5</To> <Comment>sample string 4</Comment> <EmailAddress>sample string 2</EmailAddress> <Name>sample string 1</Name> <Tour>sample string 3</Tour> </ContactUsModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.