POST api/Employee/AddEmployeeFeedback
Request Information
URI Parameters
None.
Body Parameters
FeedBackEmployee| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Employee_Id | integer |
None. |
|
| Feedback | string |
None. |
|
| IsActive | boolean |
None. |
|
| CreatedDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Employee_Id": 1,
"Feedback": "sample string 2",
"IsActive": true,
"CreatedDate": "2025-12-09T16:07:56.3465821+05:30"
}
application/xml, text/xml
Sample:
<FeedBackEmployee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VardaanCab.DataAccessLayer.DataLayer"> <CreatedDate>2025-12-09T16:07:56.3465821+05:30</CreatedDate> <Employee_Id>1</Employee_Id> <Feedback>sample string 2</Feedback> <Id>1</Id> <IsActive>true</IsActive> </FeedBackEmployee>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.