POST api/EmployeePerformance

Request Information

URI Parameters

None.

Body Parameters

EmployeePerformanceAddVm
NameDescriptionTypeAdditional information
EmployeePerformanceId

integer

None.

EmployeeId

integer

None.

PerformanceManagementCategoryId

integer

None.

PerformanceManagementReasonId

integer

None.

PerformanceManagementResolutionId

integer

None.

Notes

string

None.

IsTermination

boolean

None.

IncentiveId

integer

None.

AddedByEmail

string

None.

CreatedDate

date

None.

TrainingTests

Collection of TrainingTestAddVm

None.

ResolutionOption

string

None.

Request Formats

application/json, text/json

Sample:
{
  "employeePerformanceId": 1,
  "employeeId": 2,
  "performanceManagementCategoryId": 3,
  "performanceManagementReasonId": 4,
  "performanceManagementResolutionId": 5,
  "notes": "sample string 6",
  "isTermination": true,
  "incentiveId": 1,
  "addedByEmail": "sample string 8",
  "createdDate": "2026-05-06T00:14:50.1903889+02:00",
  "trainingTests": [
    {
      "id": 1,
      "name": "sample string 2"
    },
    {
      "id": 1,
      "name": "sample string 2"
    }
  ],
  "resolutionOption": "sample string 10"
}

text/html

Sample:
{"employeePerformanceId":1,"employeeId":2,"performanceManagementCategoryId":3,"performanceManagementReasonId":4,"performanceManagementResolutionId":5,"notes":"sample string 6","isTermination":true,"incentiveId":1,"addedByEmail":"sample string 8","createdDate":"2026-05-06T00:14:50.1903889+02:00","trainingTests":[{"id":1,"name":"sample string 2"},{"id":1,"name":"sample string 2"}],"resolutionOption":"sample string 10"}

application/xml, text/xml

Sample:
<EmployeePerformanceAddVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UrgentCareExtra.ViewModels.ViewModels">
  <AddedByEmail>sample string 8</AddedByEmail>
  <CreatedDate>2026-05-06T00:14:50.1903889+02:00</CreatedDate>
  <EmployeeId>2</EmployeeId>
  <EmployeePerformanceId>1</EmployeePerformanceId>
  <IncentiveId>1</IncentiveId>
  <IsTermination>true</IsTermination>
  <Notes>sample string 6</Notes>
  <PerformanceManagementCategoryId>3</PerformanceManagementCategoryId>
  <PerformanceManagementReasonId>4</PerformanceManagementReasonId>
  <PerformanceManagementResolutionId>5</PerformanceManagementResolutionId>
  <ResolutionOption>sample string 10</ResolutionOption>
  <TrainingTests>
    <TrainingTestAddVm>
      <Id>1</Id>
      <Name>sample string 2</Name>
    </TrainingTestAddVm>
    <TrainingTestAddVm>
      <Id>1</Id>
      <Name>sample string 2</Name>
    </TrainingTestAddVm>
  </TrainingTests>
</EmployeePerformanceAddVm>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'EmployeePerformanceAddVm'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, text/html, application/xml, text/xml

Sample:

Sample not available.