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.
datetimestringDate and time of the appointment.
uidstringPodium unique identifier for appointment.
notestringNote that is attached to the appointment.
createdAtstringWhen the appointment was created.
updatedAtstringWhen the appointment was updated.
assignedUser.uidstringPodium unique identifier for user.
contactNamestringName of the contact.
contactPhoneNumberstringPhone number of the contact.
durationMinintegerHow many miuntes long the appointment is.
{
  "status": "cancelled",
  "type": "in_person",
  "location": {
    "uid": "00000000-0000-0000-0000-000000000000"
  },
  "datetime": "2015-01-23T23:50:07Z",
  "uid": "00000000-0000-0000-0000-000000000000",
  "note": "",
  "createdAt": "2015-01-23T23:50:07Z",
  "updatedAt": "2015-01-23T23:50:07Z",
  "assignedUser": {
    "uid": "00000000-0000-0000-0000-000000000000"
  },
  "contactName": "",
  "contactPhoneNumber": "",
  "durationMin": 0
}