POST api/v1/contactus
Request Information
URI Parameters
None.
Body Parameters
ContactUsRequestName | Description | Type | Additional information |
---|---|---|---|
UserId | string |
None. |
|
string |
None. |
||
Name | string |
None. |
|
Phone | string |
None. |
|
Message | string |
None. |
|
Subject | string |
None. |
|
CountryCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "userId": "sample string 1", "email": "sample string 2", "name": "sample string 3", "phone": "sample string 4", "message": "sample string 5", "subject": "sample string 6", "countryCode": "sample string 7" }
text/xml
Sample:
<ContactUsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PMSBL.Entity"> <CountryCode>sample string 7</CountryCode> <Email>sample string 2</Email> <Message>sample string 5</Message> <Name>sample string 3</Name> <Phone>sample string 4</Phone> <Subject>sample string 6</Subject> <UserId>sample string 1</UserId> </ContactUsRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>