POST api/Feedback/Post
Request Information
URI Parameters
None.
Body Parameters
FeedbackModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
|
| Topic | string |
None. |
|
| Description | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": 1,
"Topic": "sample string 2",
"Description": "sample string 3"
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
BaseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| items | Object |
None. |
|
| message | string |
None. |
|
| total | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"items": {},
"message": "sample string 3",
"total": 4
}