POST api/v1/account/submitFeedback/userfeedback
[TC3.12+] Used to get feedback from users Equivalent SOAP API : SubmitUserFeedback
Request Information
URI Parameters
None.
Body Parameters
userFeedback
UserFeedback| Name | Description | Type | Additional information |
|---|---|---|---|
| userName | string |
None. |
|
| appId | integer |
None. |
|
| appVer | string |
None. |
|
| clientName | string |
None. |
|
| clientOS | string |
None. |
|
| UserMessage | string |
None. |
|
| EmailID | string |
None. |
|
| Rating | integer |
None. |
|
| Category | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"userName": "sample string 1",
"appId": 2,
"appVer": "sample string 3",
"clientName": "sample string 4",
"clientOS": "sample string 5",
"UserMessage": "sample string 6",
"EmailID": "sample string 7",
"Rating": 8,
"Category": "sample string 9"
}
application/xml, text/xml
Sample:
<UserFeedback xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TC2WebAPIController.Models.V1"> <Category>sample string 9</Category> <EmailID>sample string 7</EmailID> <Rating>8</Rating> <UserMessage>sample string 6</UserMessage> <appId>2</appId> <appVer>sample string 3</appVer> <clientName>sample string 4</clientName> <clientOS>sample string 5</clientOS> <userName>sample string 1</userName> </UserFeedback>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BaseResults
BaseResults| Name | Description | Type | Additional information |
|---|---|---|---|
| ResultCode | integer |
None. |
|
| ResultData | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResultCode": 1,
"ResultData": "sample string 2"
}
application/xml, text/xml
Sample:
<BaseResults xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TC2Utilities.RestApi"> <ResultCode>1</ResultCode> <ResultData>sample string 2</ResultData> </BaseResults>