Skip to content

AppointmentCreateInput

Fields required to create a connector appointment.

Properties

Property Type Required Description
title string Yes Appointment title. Minimum length: 1.
summary string Yes Appointment description or agenda.
startTimeUtc string · date-time Yes Appointment start timestamp, including its UTC offset. Pattern: ^(?:(?:\d\d[2468][048]\|\d\d[13579][26]\|\d\d0[48]\|[02468][048]00\|[13579][26]00)-02-29\|\d{4}-(?:(?:0[13578]\|1[02])-(?:0[1-9]\|[12]\d\|3[01])\|(?:0[469]\|11)-(?:0[1-9]\|[12]\d\|30)\|(?:02)-(?:0[1-9]\|1\d\|2[0-8])))T(?:(?:[01]\d\|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z\|([+-](?:[01]\d\|2[0-3]):[0-5]\d)))$.
durationMinutes integer Yes Appointment duration in whole minutes. Minimum: 0. Maximum: 9007199254740991.
contacts array of AppointmentContactReference No CRM contacts to associate with or invite to the appointment.

Example

{
  "title": "string",
  "summary": "string",
  "startTimeUtc": "2026-01-01T00:00:00Z",
  "durationMinutes": 0,
  "contacts": [
    "string"
  ]
}