POST api/User/SaveUserQuaterlyPerfomanceEvalution

Request Information

URI Parameters

None.

Body Parameters

UserQuaterlyPerfomanceEvalution
NameDescriptionTypeAdditional information
empId

integer

None.

employeeComments

string

None.

date

string

None.

employeeSignature

boolean

None.

location

string

None.

reviewPeriod

string

None.

keyPerformance

Collection of KeyPerformance

None.

criticals

Collection of Critical

None.

Request Formats

application/json, text/json

Sample:
{
  "empId": 1,
  "employeeComments": "sample string 2",
  "date": "sample string 3",
  "employeeSignature": true,
  "location": "sample string 4",
  "reviewPeriod": "sample string 5",
  "keyPerformance": [
    {
      "keyPerformance": 1,
      "keyPerformanceAttribute": "sample string 2",
      "keyResultsAchieved": "sample string 3",
      "keySelfRating": "sample string 4"
    },
    {
      "keyPerformance": 1,
      "keyPerformanceAttribute": "sample string 2",
      "keyResultsAchieved": "sample string 3",
      "keySelfRating": "sample string 4"
    }
  ],
  "criticals": [
    {
      "criticalSNo": 1,
      "criticalAttribute": "sample string 2",
      "criticalSelfRating": "sample string 3"
    },
    {
      "criticalSNo": 1,
      "criticalAttribute": "sample string 2",
      "criticalSelfRating": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<UserQuaterlyPerfomanceEvalution xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Supplier.DataAccess.SleekObjects">
  <criticals>
    <Critical>
      <criticalAttribute>sample string 2</criticalAttribute>
      <criticalSNo>1</criticalSNo>
      <criticalSelfRating>sample string 3</criticalSelfRating>
    </Critical>
    <Critical>
      <criticalAttribute>sample string 2</criticalAttribute>
      <criticalSNo>1</criticalSNo>
      <criticalSelfRating>sample string 3</criticalSelfRating>
    </Critical>
  </criticals>
  <date>sample string 3</date>
  <empId>1</empId>
  <employeeComments>sample string 2</employeeComments>
  <employeeSignature>true</employeeSignature>
  <keyPerformance>
    <KeyPerformance>
      <keyPerformance>1</keyPerformance>
      <keyPerformanceAttribute>sample string 2</keyPerformanceAttribute>
      <keyResultsAchieved>sample string 3</keyResultsAchieved>
      <keySelfRating>sample string 4</keySelfRating>
    </KeyPerformance>
    <KeyPerformance>
      <keyPerformance>1</keyPerformance>
      <keyPerformanceAttribute>sample string 2</keyPerformanceAttribute>
      <keyResultsAchieved>sample string 3</keyResultsAchieved>
      <keySelfRating>sample string 4</keySelfRating>
    </KeyPerformance>
  </keyPerformance>
  <location>sample string 4</location>
  <reviewPeriod>sample string 5</reviewPeriod>
</UserQuaterlyPerfomanceEvalution>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseStatus
NameDescriptionTypeAdditional information
StatusCode

string

None.

Message

Object

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "StatusCode": "sample string 1",
  "Message": {},
  "Data": {}
}

application/xml, text/xml

Sample:
<ResponseStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Supplier.NlfApi.DataAccess.SleekObjects">
  <Data />
  <Message />
  <StatusCode>sample string 1</StatusCode>
</ResponseStatus>