POST api/v1/appraisals/{appraisalId}/competencies/{compId}/score
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| appraisalId | integer |
Required |
|
| compId | integer |
Required |
Body Parameters
AppraisalScoreUpdateDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Score | integer |
None. |
|
| OverallScore | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"Score": 1,
"OverallScore": 2.0
}
application/xml, text/xml
Sample:
<AppraisalsController.AppraisalScoreUpdateDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/"> <OverallScore>2</OverallScore> <Score>1</Score> </AppraisalsController.AppraisalScoreUpdateDto>
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.