POST api/advisee/addappointmentsummarynote
Request Information
URI Parameters
None.
Body Parameters
AddNoteSummaryViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CompetenceReview | integer |
None. |
|
| ApproachReview | integer |
None. |
|
| CommunicationReview | integer |
None. |
|
| ValueForMoneyReview | integer |
None. |
|
| ReviewGrade | decimal number |
None. |
|
| AdviseeAppointmentMinutes | string |
None. |
|
| AppointmentId | integer |
None. |
|
| AdviseeAppointmentNote | string |
None. |
|
| AdvisorAppointmentNote | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CompetenceReview": 1,
"ApproachReview": 2,
"CommunicationReview": 3,
"ValueForMoneyReview": 4,
"ReviewGrade": 2.5,
"AdviseeAppointmentMinutes": "sample string 5",
"AppointmentId": 6,
"AdviseeAppointmentNote": "sample string 7",
"AdvisorAppointmentNote": "sample string 8"
}
application/xml, text/xml
Sample:
<AddNoteSummaryViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Co.Kes.Data.ViewModels.CoKes"> <AdviseeAppointmentNote>sample string 7</AdviseeAppointmentNote> <AdvisorAppointmentNote>sample string 8</AdvisorAppointmentNote> <AppointmentId>6</AppointmentId> <AdviseeAppointmentMinutes>sample string 5</AdviseeAppointmentMinutes> <ApproachReview>2</ApproachReview> <CommunicationReview>3</CommunicationReview> <CompetenceReview>1</CompetenceReview> <ValueForMoneyReview>4</ValueForMoneyReview> </AddNoteSummaryViewModel>
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.