Get Resources for Manual Scheduling Action
This action is available in API version 61.0 and later.
Special Access Rules
The Get Resources for Manual Scheduling action is available in Enterprise and Unlimited Editions with Health Cloud enabled with the Home Health setting.
Supported REST HTTP Methods
- URI
- /services/data/v66.0/actions/standard/getResourcesForMnlScheduling
- Formats
- JSON, XML
- HTTP Methods
- GET
- Authentication
- Authorization: Bearer token
Inputs
| Input | Details |
|---|---|
| operatingHoursId |
|
| recurringDaysList |
|
| recurrenceFrequencyCount |
|
| recurrenceFrequencyType |
|
| resourceRecommendationCount |
|
| schedulingPolicyId |
|
| serviceAppointmentId |
|
| visitsRequired |
|
| visitType |
|
| workTypeId |
|
Outputs
| Output | Details |
|---|---|
| endDateTime |
|
| grade |
|
| manualSchedulingRecommendations |
|
| recommendationGrade |
|
| resourceId |
|
| resourceName |
|
| resourceRecommendations |
|
| sequence |
|
| startDateTime |
|
| scheduleIntervalRecommendations |
|
| visitType |
|
Example
- GET
-
This sample request is for the Get Resources for Manual Scheduling action.
1{ 2 "inputs": [ 3 { 4 "visitType": "Recurring", 5 "schedulingPolicyId": "a0cSGxx0000CD37YAG", 6 "workTypeId": "08qSG0000004zBNYxx", 7 "recurrenceFrequencyType": "WEEKLY", 8 "recurrenceFrequencyCount": 2, 9 "visitsRequired": 2, 10 "recurringDaysList": "Monday,Tuesday", 11 "resourceRecommendationCount": 3, 12 "operatingHoursId": "0OHSG00000xxSUH4A4", 13 "serviceAppointmentId": "08pSG00000xxUrdYAG" 14 } 15 ] 16}This sample response is for the Get Resources for Manual Scheduling action.
1 2{ 3 { 4 "visitType": "Recurring", 5 "manualSchedulingRecommendations": [ 6 { 7 "resourceRecommendations": [ 8 { 9 "scheduleIntervalRecommendations": [ 10 { 11 "startDateTime": "2024-08-05T12:59:59.000Z", 12 "sequence": 1, 13 "grade": "100", 14 "endDateTime": "2024-08-05T01:00:00.000Z" 15 }, 16 { 17 "startDateTime": "2024-08-06T05:15:00.000Z", 18 "sequence": 2, 19 "grade": "0", 20 "endDateTime": "2024-08-06T02:00:00.000Z" 21 } 22 ], 23 "resourceName": "Allen Smith", 24 "resourceId": "0HnSG00000085yb0xx" 25 } 26 ], 27 "recommendationGrade": "85" 28 } 29 ] 30 } 31}