POST api/contact/Me
Request Information
URI Parameters
None.
Body Parameters
ContactMeInfoName | Description | Type | Additional information |
---|---|---|---|
ToSubscribeNewsletter | boolean |
None. |
|
FullName | string |
None. |
|
EmailAddress | string |
None. |
|
PhoneNumber | string |
None. |
|
CountryCode | string |
None. |
|
Subject | string |
None. |
|
Content | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "ToSubscribeNewsletter": true, "FullName": "sample string 1", "EmailAddress": "sample string 2", "PhoneNumber": "sample string 3", "CountryCode": "sample string 4", "Subject": "sample string 5", "Content": "sample string 6" }
application/xml, text/xml
Sample:
<ContactMeController.ContactMeInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IES.JobBoard.WebApi.Controllers"> <Content>sample string 6</Content> <CountryCode>sample string 4</CountryCode> <EmailAddress>sample string 2</EmailAddress> <FullName>sample string 1</FullName> <PhoneNumber>sample string 3</PhoneNumber> <Subject>sample string 5</Subject> <ToSubscribeNewsletter>true</ToSubscribeNewsletter> </ContactMeController.ContactMeInfo>
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.