Appointments
Get Appointment by ID
API Documentation
Appointments
Availability
Claims
Documents
Locations
Notes
Orders
Providers
Appointments
Get Appointment by ID
Gets details for a specific appointment.
GET
/
appointment
/
{id}
curl --request GET \
--url https://api.usecobalt.com/v1/appointment/{id} \
--header 'access_token: <api-key>' \
--header 'client_id: <api-key>' \
--header 'client_secret: <api-key>'
{
"success": true,
"appointments": {
"id": "<string>",
"datetime": "<string>",
"appointment_mode": "<string>",
"appointment_type": "<string>",
"location": "<string>",
"patient_name": "<string>",
"patient_mrn": "<string>",
"patient_dob": "<string>",
"patient_sex": "<string>",
"insurance": "<string>",
"insurance_subscriber": "<string>",
"insurance_number": "<string>",
"insurance_group_number": "<string>",
"provider_ehr_id": "<string>",
"provider_npi": "<string>",
"status": "<string>"
}
}
Example Request
curl -X GET https://api.usecobalt.com/v1/appointment/1276397812 \
-H 'Content-Type: application/json' \
-H 'client_id: ci_live_198908HJDKJSH98789OHKJL' \
-H 'client_secret: cs_live_9827hofdsklOYYHJLJh' \
-H 'access_token: 493JKLHIU98789hLKH9HHJH'
Example Response
{
"success": true,
"appointments": {
"id": "1276397812",
"datetime": "2024-03-14T00:00:00-07:00",
"appointment_mode": "office",
"appointment_type": "f/u",
"location": "54252",
"patient_name": "Jane Doe",
"patient_mrn": "414421",
"patient_dob": "1994-08-12",
"patient_sex": "female",
"insurance": "Blue Shield",
"insurance_subscriber": "John Doe",
"insurance_number": "19228934",
"insurance_group_number": "FDL992829qe",
"provider_ehr_id": "6644",
"provider_npi": "2453453453",
"status": "completed"
}
}
Authorizations
Path Parameters
The appointment ID
Response
200 - application/json
Successful response
curl --request GET \
--url https://api.usecobalt.com/v1/appointment/{id} \
--header 'access_token: <api-key>' \
--header 'client_id: <api-key>' \
--header 'client_secret: <api-key>'
{
"success": true,
"appointments": {
"id": "<string>",
"datetime": "<string>",
"appointment_mode": "<string>",
"appointment_type": "<string>",
"location": "<string>",
"patient_name": "<string>",
"patient_mrn": "<string>",
"patient_dob": "<string>",
"patient_sex": "<string>",
"insurance": "<string>",
"insurance_subscriber": "<string>",
"insurance_number": "<string>",
"insurance_group_number": "<string>",
"provider_ehr_id": "<string>",
"provider_npi": "<string>",
"status": "<string>"
}
}