POST api/appointment/create

Request Information

URI Parameters

None.

Body Parameters

AppointmentDto
NameDescriptionTypeAdditional information
JobId

integer

None.

ScheduledFor

date

None.

DurationMinutes

integer

None.

Notes

string

None.

AssignedTo

string

None.

Request Formats

application/json, text/json

Sample:
{
  "JobId": 1,
  "ScheduledFor": "2026-07-14T23:08:13.9852784-04:00",
  "DurationMinutes": 3,
  "Notes": "sample string 4",
  "AssignedTo": "sample string 5"
}

application/xml, text/xml

Sample:
<AppointmentDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EMGBridge.Models">
  <AssignedTo>sample string 5</AssignedTo>
  <DurationMinutes>3</DurationMinutes>
  <JobId>1</JobId>
  <Notes>sample string 4</Notes>
  <ScheduledFor>2026-07-14T23:08:13.9852784-04:00</ScheduledFor>
</AppointmentDto>

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.