Skip to main content
GET
/
notes
/
patients-with-appointments-now
Get Patients With Appointments Now
curl --request GET \
  --url https://api.decodahealth.com/notes/patients-with-appointments-now \
  --header 'API-KEY: <api-key>' \
  --header 'TENANT: <tenant>'
[
  {
    "id": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "appointmentStart": "2023-11-07T05:31:56Z",
    "appointmentEnd": "2023-11-07T05:31:56Z",
    "dateOfBirth": "<string>",
    "phoneNumber": "<string>",
    "email": "<string>",
    "appointmentType": "<string>",
    "appointmentTitle": "<string>"
  }
]

Headers

TENANT
string
required

The tenant you are making this request on behalf of

API-KEY
string
required

Your api key

Query Parameters

provider_id
string
required
minutes_before
integer
default:30
minutes_after
integer
default:60

Response

Successful Response

id
string
required
firstName
string
required
lastName
string
required
appointmentStart
string<date-time>
required
appointmentEnd
string<date-time>
required
dateOfBirth
string | null
phoneNumber
string | null
email
string | null
appointmentType
string | null
appointmentTitle
string | null