Schedule Home Visits Manually Action
This action is available in API version 61.0 and later.
Special Access Rules
Schedule Home Visits Manually 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/scheduleHomeVisitsManually
- Formats
- JSON, XML
- HTTP Methods
- POST
- Authentication
- Authorization: Bearer token
Inputs
| Input | Details |
|---|---|
| accountId |
|
| clinicalServiceRequestId |
|
| firstVisitEndDateTime |
|
| firstVisitStartDateTime |
|
| operatingHoursId |
|
| recurringDaysList |
|
| recurrenceFrequencyType |
|
| resourceDetails |
|
| schedulingPolicyId |
|
| serviceTerritoryId |
|
| skillIds |
|
| visitsRequired |
|
| visitSourceId |
|
| visitType |
|
| workPlanTemplateIds |
|
Outputs
| Output | Details |
|---|---|
| careServiceVisitPlanId |
|
| careServiceVisitId |
|
Example
- POST
-
This sample request is for the Schedule Home Visits Manually action when visitType is Start of Care.
1{ 2 "inputs": [ 3 { 4 "accountId": "001xx000003GYv7AAG", 5 "visitType": "StartOfCare", 6 "schedulingPolicyId": "a0cxx000000fzXpAAI", 7 "clinicalServiceRequestId": "0jyxx0000000001AAA", 8 "serviceTerritoryId": "0Hhxx0000004C93CAE", 9 "firstVisitStartDateTime": "2026-02-18T05:30:00Z", 10 "firstVisitEndDateTime": "2026-02-18T07:35:00Z", 11 "visitsRequired": 1, 12 "skillIds": [ 13 "0C5SG0000003O930AE" 14 ], 15 "resourceDetails": [ 16 17 18 { 19 "sequence": 1, 20 "scheduleStart": "2026-02-18T05:30:00Z", 21 "scheduleEnd": "2026-02-18T06:30:00Z", 22 "resourceId": "0Hnxx0000004C92CAE" 23 } 24 25 ] 26 } 27 ] 28}This sample request is for the Schedule Home Visits Manually action when visitType is Recurring.
1{ 2 "inputs": [ 3 { 4 "accountId": "001xx000003GYv7AAG", 5 "visitType": "Recurring", 6 "schedulingPolicyId": "a0cxx000000fzXpAAI", 7 "clinicalServiceRequestId": "0jyxx0000000001AAA", 8 "recurrenceFrequencyType": "Weekly", 9 "recurringDaysList": [ 10 "Monday", 11 "Tuesday" 12 ], 13 "operatingHoursId": "0OHxx0000004C93GAE__USER", 14 "serviceTerritoryId": "0Hhxx0000004C93CAE", 15 "firstVisitStartDateTime": "2026-02-23T05:30:00Z", 16 "firstVisitEndDateTime": "2026-02-23T07:35:00Z", 17 "visitsRequired": 2, 18 "skillIds": ["0C5SG0000003O930AE"], 19 "resourceDetails": [ 20 { 21 "sequence": 1, 22 "scheduleStart": "2026-02-23T05:30:00Z", 23 "scheduleEnd": "2026-02-23T06:30:00Z", 24 "resourceId": "0Hnxx0000004C92CAE" 25 }, 26 { 27 "sequence": 2, 28 "scheduleStart": "2026-02-24T05:30:00Z", 29 "scheduleEnd": "2026-02-24T06:30:00Z", 30 "resourceId": "0Hnxx0000004C92CAE" 31 } 32 ] 33 } 34 ] 35}This sample response is for the Schedule Home Visits Manually action when visitType is Start of Care.
1[ {"careServiceVisitId":"0oxxx00000000WHAAY"} ]This sample response is for the Schedule Home Visits Manually action when visitType is Recurring.
1[ {"careServiceVisitPlanId":"0qExx0000000001EAA"} ]