POST api/KRA/DeleteEmployeePerformanceKRAByID

Request Information

URI Parameters

None.

Body Parameters

PerformanceKRAViewModel
NameDescriptionTypeAdditional information
EmployeePerformanceKRAID

integer

None.

EmployeePerformanceReviewID

integer

None.

KRATitle

string

None.

CategoryID

integer

None.

Criteria

string

None.

Weightage

decimal number

None.

Notes

string

None.

Score

decimal number

None.

StatusCode

string

None.

EmployeeID

integer

None.

LoginEmployeeID

integer

None.

EmployeePerformanceKRAIDs

string

None.

PerformanceReviewIDS

Collection of integer

None.

Request Formats

application/json, text/json

Sample:
{
  "EmployeePerformanceKRAID": 1,
  "EmployeePerformanceReviewID": 2,
  "KRATitle": "sample string 3",
  "CategoryID": 4,
  "Criteria": "sample string 5",
  "Weightage": 6.0,
  "Notes": "sample string 7",
  "Score": 8.0,
  "StatusCode": "sample string 9",
  "EmployeeID": 10,
  "LoginEmployeeID": 11,
  "EmployeePerformanceKRAIDs": "sample string 12",
  "PerformanceReviewIDS": [
    1,
    2
  ]
}

application/xml, text/xml

Sample:
<PerformanceKRAViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HRMSWebAPI.Transaction.KRA">
  <CategoryID>4</CategoryID>
  <Criteria>sample string 5</Criteria>
  <EmployeeID>10</EmployeeID>
  <EmployeePerformanceKRAID>1</EmployeePerformanceKRAID>
  <EmployeePerformanceKRAIDs>sample string 12</EmployeePerformanceKRAIDs>
  <EmployeePerformanceReviewID>2</EmployeePerformanceReviewID>
  <KRATitle>sample string 3</KRATitle>
  <LoginEmployeeID>11</LoginEmployeeID>
  <Notes>sample string 7</Notes>
  <PerformanceReviewIDS xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </PerformanceReviewIDS>
  <Score>8</Score>
  <StatusCode>sample string 9</StatusCode>
  <Weightage>6</Weightage>
</PerformanceKRAViewModel>

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.