THERAPYNOTES
Fetch Schedule
Fetch schedule in Therapy Notes
POSThttps://api.ontross.com/api/integrations/tn/fetch-schedule
Request Fields
input
object
requiredInput object.
input.date
string
requiredDate
auth_id
string
requiredAuth id
Output Fields
CalendarItems
array
List of Calendar Items.
CalendarItems[].ID
integer
Id
CalendarItems[].PracticeID
integer
Practice id
CalendarItems[].HasMultiplePatientTimeZones
boolean
Has multiple patient time zones
CalendarItems[].TimeZoneAbbreviation
string
Time zone abbreviation
CalendarItems[].PatientTimeZoneAbbreviation
string
Patient time zone abbreviation
CalendarItems[].PatientStartDate
string
Patient start date
CalendarItems[].PatientEndDate
string
Patient end date
CalendarItems[].Type
integer
Type
CalendarItems[].TypeName
string
Type name
CalendarItems[].Status
integer
Status
CalendarItems[].StartDate
string
Start date
CalendarItems[].StartDateUtc
string
Start date utc
CalendarItems[].EndDate
string
End date
CalendarItems[].EndDateUtc
string
End date utc
CalendarItems[].RecurringType
integer
Recurring type
CalendarItems[].RecurringRule
integer
Recurring rule
CalendarItems[].IsPracticeWide
boolean
Is practice wide
CalendarItems[].Patients
array
List of Patients.
CalendarItems[].Patients[].ID
integer
Id
CalendarItems[].CalendarEntryPatients
array
List of Calendar Entry Patients.
CalendarItems[].CalendarEntryPatients[].PatientId
integer
Patient id
CalendarItems[].CalendarEntryPatients[].PracticeID
integer
Practice id
CalendarItems[].CalendarEntryPatients[].CalendarEntryID
integer
Calendar entry id
CalendarItems[].RecurrenceSelectedDaysOfWeek
integer
Recurrence selected days of week
CalendarItems[].NextAppointmentID
integer
Next appointment id
CalendarItems[].SeriesNextDate
string
Series next date
CalendarItems[].AppointmentMode
string
Appointment mode
CalendarItems[].ServiceCodeID
integer
Service code id
CalendarItems[].LocationType
integer
Location type
CalendarItems[].CustomLocation
integer
Custom location
CalendarItems[].ClinicianID
integer
Clinician id
CalendarItems[].EncryptedID
string
Encrypted id
CalendarItems[].IsTelehealth
boolean
Is telehealth
CalendarItems[].Note
string
Note
Code
curl --request POST \
--url https://api.ontross.com/api/integrations/tn/fetch-schedule \
--header 'X-API-Key: REPLACE_KEY_VALUE' \
--header 'content-type: application/json' \
--data '{"input":{"date":"2026-01-01"},"auth_id":"auth_uuid_here"}'Request BODY
{
"input": {
"date": "2026-01-01"
},
"auth_id": "auth_uuid_here"
}