POST api/advisor/addappointmentnote

Request Information

URI Parameters

None.

Body Parameters

AddNoteViewModel
NameDescriptionTypeAdditional information
AppointmentId

integer

None.

AdviseeAppointmentNote

string

None.

AdvisorAppointmentNote

string

None.

Request Formats

application/json, text/json

Sample:
{
  "AppointmentId": 1,
  "AdviseeAppointmentNote": "sample string 2",
  "AdvisorAppointmentNote": "sample string 3"
}

application/xml, text/xml

Sample:
<AddNoteViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Co.Kes.Data.ViewModels.CoKes">
  <AdviseeAppointmentNote>sample string 2</AdviseeAppointmentNote>
  <AdvisorAppointmentNote>sample string 3</AdvisorAppointmentNote>
  <AppointmentId>1</AppointmentId>
</AddNoteViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.