POST api/v2/{practiceId}/clinical/encounters/{encounterId}/followup/send
Schedule sending sms as part of visit followups for encounter
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| practiceId | globally unique identifier |
Required |
|
| encounterId | globally unique identifier |
Required |
Body Parameters
Com.Healthbridge.Hhas.ClinicalPatientEngagement.Interface.Commands.SendEncounterRequireFollowupPatientSms| Name | Description | Type | Additional information |
|---|---|---|---|
| FollowupWithPatientRegardingVisitOutcomeId | globally unique identifier |
None. |
|
| EncounterId | globally unique identifier |
None. |
|
| PatientCommunication | Com.Healthbridge.Hhas.ClinicalPatientEngagement.Interface.ValueObjects.PatientCommunicationVo |
None. |
|
| FollowUpReasons | Collection of string |
None. |
|
| CorrelationIds | Collection of string |
None. |
|
| OriginatedSystem | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"FollowupWithPatientRegardingVisitOutcomeId": "f1b65f2a-3fda-43b6-92af-7f226f5d3723",
"EncounterId": "ceb8890a-5ddd-4bcc-95f1-921abeb90acf",
"PatientCommunication": {
"PracticeId": "176b99cf-28e1-4476-a7f6-495d631e8d72",
"PatientId": "a92e7bd5-4f99-46d8-94b2-fdf30190d8ba",
"PatientName": "sample string 3",
"PatientSurname": "sample string 4",
"PatientCellphone": "sample string 5",
"PatientDOB": "2025-11-20T01:54:29Z",
"FollowUpDate": "2025-11-20T01:54:29Z",
"DoctorName": "sample string 8",
"CommunicationText": "sample string 9"
},
"FollowUpReasons": [
"sample string 1",
"sample string 2"
],
"CorrelationIds": [
"sample string 1",
"sample string 2"
],
"OriginatedSystem": "sample string 3"
}
application/xml, text/xml
Sample:
<SendEncounterRequireFollowupPatientSms xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Hhas.ClinicalPatientEngagement.Interface.Commands">
<CorrelationIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://mpsapi.healthbridge.com/platform/core/v1/command/">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</CorrelationIds>
<OriginatedSystem xmlns="http://mpsapi.healthbridge.com/platform/core/v1/command/">sample string 3</OriginatedSystem>
<EncounterId>ceb8890a-5ddd-4bcc-95f1-921abeb90acf</EncounterId>
<FollowUpReasons xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</FollowUpReasons>
<FollowupWithPatientRegardingVisitOutcomeId>f1b65f2a-3fda-43b6-92af-7f226f5d3723</FollowupWithPatientRegardingVisitOutcomeId>
<PatientCommunication xmlns:d2p1="http://mpsapi.healthbridge.com/clinical/clinical/v1/patientnotification/">
<d2p1:CommunicationText>sample string 9</d2p1:CommunicationText>
<d2p1:DoctorName>sample string 8</d2p1:DoctorName>
<d2p1:FollowUpDate>2025-11-20T01:54:29.9985773+02:00</d2p1:FollowUpDate>
<d2p1:PatientCellphone>sample string 5</d2p1:PatientCellphone>
<d2p1:PatientDOB>2025-11-20T01:54:29.9985773+02:00</d2p1:PatientDOB>
<d2p1:PatientId>a92e7bd5-4f99-46d8-94b2-fdf30190d8ba</d2p1:PatientId>
<d2p1:PatientName>sample string 3</d2p1:PatientName>
<d2p1:PatientSurname>sample string 4</d2p1:PatientSurname>
<d2p1:PracticeId>176b99cf-28e1-4476-a7f6-495d631e8d72</d2p1:PracticeId>
</PatientCommunication>
</SendEncounterRequireFollowupPatientSms>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiResultOfSystem.Guid| Name | Description | Type | Additional information |
|---|---|---|---|
| Sucess | boolean |
None. |
|
| ResponseCode | integer |
None. |
|
| ResponseMessage | string |
None. |
|
| Data | globally unique identifier |
None. |
|
| Links | Collection of Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiLink |
None. |
Response Formats
application/json, text/json
Sample:
{
"Sucess": true,
"ResponseCode": 2,
"ResponseMessage": "sample string 3",
"Data": "fb19005c-6fd8-4bfa-b83e-9a0e239f7e16",
"Links": [
{
"Rel": "sample string 1",
"HRef": "sample string 2"
},
{
"Rel": "sample string 1",
"HRef": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<RestApiResultOfguid xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects">
<Data>fb19005c-6fd8-4bfa-b83e-9a0e239f7e16</Data>
<Links>
<RestApiLink>
<HRef>sample string 2</HRef>
<Rel>sample string 1</Rel>
</RestApiLink>
<RestApiLink>
<HRef>sample string 2</HRef>
<Rel>sample string 1</Rel>
</RestApiLink>
</Links>
<ResponseCode>2</ResponseCode>
<ResponseMessage>sample string 3</ResponseMessage>
<Sucess>true</Sucess>
</RestApiResultOfguid>