The appointment object

AttributeTypeDescription
statusstringStatus of the appointment. Possible values: ["cancelled", "completed", "confirmed", "no_show", "unconfirmed"]
typestringType of appointment. Possible values: ["in_person", "virtual"]
location.uidstringPodium unique identifier for location.
uidstringPodium unique identifier for appointment.
createdAtstringWhen the appointment was created.
updatedAtstringWhen the appointment was updated.
contactNamestringName of the contact.
contactPhoneNumberstringPhone number of the contact.
datetimestringDate and time of the appointment.
durationMinintegerHow many miuntes long the appointment is.
notestringNote that is attached to the appointment.
assignedUser.uidstringPodium unique identifier for user.
{
  "status": "cancelled",
  "type": "in_person",
  "location": {
    "uid": "00000000-0000-0000-0000-000000000000"
  },
  "uid": "00000000-0000-0000-0000-000000000000",
  "createdAt": "2015-01-23T23:50:07Z",
  "updatedAt": "2015-01-23T23:50:07Z",
  "contactName": "",
  "contactPhoneNumber": "",
  "datetime": "2015-01-23T23:50:07Z",
  "durationMin": 0,
  "note": "",
  "assignedUser": {
    "uid": "00000000-0000-0000-0000-000000000000"
  }
}