POST api/Support/SendSupport
Documentation for 'SendSupport'.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| data | Documentation for 'data'. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"Subject": "sample string 1",
"Phone": "sample string 2",
"Email": "sample string 3",
"Body": "sample string 4",
"UserName": "sample string 5",
"LicenseId": "sample string 6",
"LicenseNickName": "sample string 7"
}
application/xml, text/xml
Sample:
<SupportModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BoothApp.Common"> <Body>sample string 4</Body> <Email>sample string 3</Email> <LicenseId>sample string 6</LicenseId> <LicenseNickName>sample string 7</LicenseNickName> <Phone>sample string 2</Phone> <Subject>sample string 1</Subject> <UserName>sample string 5</UserName> </SupportModel>
application/x-www-form-urlencoded
Sample:
Response Information
Response body formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>