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": "54ee0a7c-d2b8-484f-83ba-6bfd9a86a8d3",
"EncounterId": "ec81b795-2a9b-4588-b663-3e7e0a1a7df4",
"PatientCommunication": {
"PracticeId": "fc41ba5f-aa5a-4cee-89a8-2516d0b2b6bf",
"PatientId": "6a9e0997-1a57-42fa-939e-563024574417",
"PatientName": "sample string 3",
"PatientSurname": "sample string 4",
"PatientCellphone": "sample string 5",
"PatientDOB": "2025-12-11T01:47:23Z",
"FollowUpDate": "2025-12-11T01:47:23Z",
"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>ec81b795-2a9b-4588-b663-3e7e0a1a7df4</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>54ee0a7c-d2b8-484f-83ba-6bfd9a86a8d3</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-12-11T01:47:23.1040547+02:00</d2p1:FollowUpDate>
<d2p1:PatientCellphone>sample string 5</d2p1:PatientCellphone>
<d2p1:PatientDOB>2025-12-11T01:47:23.1040547+02:00</d2p1:PatientDOB>
<d2p1:PatientId>6a9e0997-1a57-42fa-939e-563024574417</d2p1:PatientId>
<d2p1:PatientName>sample string 3</d2p1:PatientName>
<d2p1:PatientSurname>sample string 4</d2p1:PatientSurname>
<d2p1:PracticeId>fc41ba5f-aa5a-4cee-89a8-2516d0b2b6bf</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": "b5279c45-7b56-43b9-aa06-513b0094e672",
"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>b5279c45-7b56-43b9-aa06-513b0094e672</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>