POST api/Appointment

Request Information

URI Parameters

None.

Body Parameters

SetAppointmentData
NameDescriptionTypeAdditional information
serviceId

integer

None.

appointmentDateTime

date

None.

customerId

integer

None.

appointmentTypeId

integer

None.

subject

string

None.

Request Formats

application/json, text/json

Sample:
{
  "serviceId": 1,
  "appointmentDateTime": "2026-06-24T14:34:29.8361701-05:00",
  "customerId": 3,
  "appointmentTypeId": 4,
  "subject": "sample string 5"
}

application/xml, text/xml

Sample:
<SetAppointmentData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LobbyVirtual_Issatec_API.Models.Appointment">
  <appointmentDateTime>2026-06-24T14:34:29.8361701-05:00</appointmentDateTime>
  <appointmentTypeId>4</appointmentTypeId>
  <customerId>3</customerId>
  <serviceId>1</serviceId>
  <subject>sample string 5</subject>
</SetAppointmentData>

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.