Book Appointment (POST)
Create or book a health appointment.
- Resource
-
1/connect/health/appointment-management/appointment - Resource Example
-
1https://yourInstance.salesforce.com/services/data/v66.0/connect/health/appointment-management/appointment - HTTP methods
- POST
- Request body for POST LS
-
1{ 2 "startDate": "2013-12-10T09:00:00Z", 3 "endDate": "2013-12-10T11:00:00Z", 4 "workTypeId": "<workTypeId>", 5 "channelId": "<channelId>", 6 "comment": "Further expand on the results of the MRI and determine the next actions that may be appropriate.", 7 "participants": [ 8 { 9 "reference": "Patient/<patientId>" 10 }, 11 { 12 "reference": "Facility/<facilityId>" 13 }, 14 { 15 "reference": "Practitioner/<healthcarePractitionerId>", 16 "isReferenceRequired": true 17 } 18 ] 19} - Request body for POST (EHR - External system, like Cerner, Epic and others)
-
1{ 2 "startDate": "2013-12-10T09:00:00Z", 3 "endDate": "2013-12-10T11:00:00Z", 4 "workTypeId": "<workTypeId>", 5 "channelId": "<channelId>", 6 "sourceSystem": "cerner", 7 "comment": "Further expand on the results of the MRI and determine the next actions that may be appropriate.", 8 "appointmentTypes": [ 9 "FOLLOWUP" 10 ], 11 "serviceCategories": [ 12 "serviceCategoryCode1", 13 "serviceCategoryCode2" 14 ], 15 "serviceTypes": [ 16 "serviceTypeCode1", 17 "serviceTypeCode2" 18 ], 19 "specialties": [ 20 "specialityCode" 21 ], 22 "slots": [ 23 { 24 "id": "24477854-21304876-62852027-2", 25 "reference": "<healthcarePractitionerId>" - matches with the reference of practitioner within participants 26 } 27 ], 28 "participants": [ 29 { 30 "reference": "Patient/<patientId>" 31 }, 32 { 33 "reference": "Facility/<facilityId>" 34 }, 35 { 36 "reference": "Practitioner/<healthcarePractitionerId>", 37 "isReferenceRequired": true 38 } 39 ] 40} - Request parameters for POST
-
- Response body for POST
- Book Appointment Output