POST api/Support/SendSupport

Documentation for 'SendSupport'.

Request Information

Parameters

NameDescriptionAdditional 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",
  "Body": "sample string 3",
  "UserName": "sample string 4",
  "LicenseId": "sample string 5",
  "LicenseNickName": "sample string 6"
}

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 3</Body>
  <LicenseId>sample string 5</LicenseId>
  <LicenseNickName>sample string 6</LicenseNickName>
  <Phone>sample string 2</Phone>
  <Subject>sample string 1</Subject>
  <UserName>sample string 4</UserName>
</SupportModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'FormUrlEncodedMediaTypeFormatterTracer' to write type 'SupportModel'.

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>