POST api/FeedbackEntry
Request Information
URI Parameters
None.
Body Parameters
FeedbackEntry| Name | Description | Type | Additional information |
|---|---|---|---|
| FeedBackDate | date |
None. |
|
| AccountId | integer |
None. |
|
| SupervisorId | integer |
None. |
|
| FeedbackFrom | string |
None. |
|
| ContactNo | string |
None. |
|
| OnTime | boolean |
None. |
|
| WorkQuality | string |
None. |
|
| EmployeeSatisfaction | boolean |
None. |
|
| Message | string |
None. |
|
| Suggestions | string |
None. |
|
| Id | integer |
None. |
|
| Active | boolean |
None. |
|
| CreatedBy | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"FeedBackDate": "2025-12-16T13:17:54.0568179+05:30",
"AccountId": 2,
"SupervisorId": 3,
"FeedbackFrom": "sample string 4",
"ContactNo": "sample string 5",
"OnTime": true,
"WorkQuality": "sample string 7",
"EmployeeSatisfaction": true,
"Message": "sample string 9",
"Suggestions": "sample string 10",
"Id": 11,
"Active": true,
"CreatedBy": "sample string 13"
}
application/xml, text/xml
Sample:
<FeedbackEntry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TrueCodeAPI.Model"> <Active>true</Active> <CreatedBy>sample string 13</CreatedBy> <Id>11</Id> <AccountId>2</AccountId> <ContactNo>sample string 5</ContactNo> <EmployeeSatisfaction>true</EmployeeSatisfaction> <FeedBackDate>2025-12-16T13:17:54.0568179+05:30</FeedBackDate> <FeedbackFrom>sample string 4</FeedbackFrom> <Message>sample string 9</Message> <OnTime>true</OnTime> <Suggestions>sample string 10</Suggestions> <SupervisorId>3</SupervisorId> <WorkQuality>sample string 7</WorkQuality> </FeedbackEntry>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |