POST api/CustomerFeedbacks/SaveUserCommets
Request Information
URI Parameters
None.
Body Parameters
UserComments| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Username | string |
None. |
|
| CatId | integer |
None. |
|
| Subcat | integer |
None. |
|
| QuizId | integer |
None. |
|
| Question | integer |
None. |
|
| FirstInserted | date |
None. |
|
| Comment | string |
None. |
|
| WordId | integer |
None. |
|
| RepliedDate | date |
None. |
|
| RepliedBy | string |
None. |
|
| Reply | string |
None. |
|
| ReplyStatus | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Username": "sample string 2",
"CatId": 1,
"Subcat": 1,
"QuizId": 1,
"Question": 1,
"FirstInserted": "2025-12-20T17:05:30.7422215-08:00",
"Comment": "sample string 3",
"WordId": 1,
"RepliedDate": "2025-12-20T17:05:30.7422215-08:00",
"RepliedBy": "sample string 4",
"Reply": "sample string 5",
"ReplyStatus": true
}
application/xml, text/xml
Sample:
<UserComments xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SpellingAPI"> <CatId>1</CatId> <Comment>sample string 3</Comment> <FirstInserted>2025-12-20T17:05:30.7422215-08:00</FirstInserted> <Id>1</Id> <Question>1</Question> <QuizId>1</QuizId> <RepliedBy>sample string 4</RepliedBy> <RepliedDate>2025-12-20T17:05:30.7422215-08:00</RepliedDate> <Reply>sample string 5</Reply> <ReplyStatus>true</ReplyStatus> <Subcat>1</Subcat> <Username>sample string 2</Username> <WordId>1</WordId> </UserComments>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>