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": "645ac08c-bd88-44bd-be68-8fc597ff1dd7",
"EncounterId": "c1e1e877-4354-4c5b-a998-4af3ccee31a0",
"PatientCommunication": {
"PracticeId": "6e79df6b-f7b5-44d5-8fff-25a3ecf0fa6c",
"PatientId": "b1b0d306-74e9-43ba-a2e5-18499ba8d3b2",
"PatientName": "sample string 3",
"PatientSurname": "sample string 4",
"PatientCellphone": "sample string 5",
"PatientDOB": "2026-05-21T01:58:21Z",
"FollowUpDate": "2026-05-21T01:58:21Z",
"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>c1e1e877-4354-4c5b-a998-4af3ccee31a0</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>645ac08c-bd88-44bd-be68-8fc597ff1dd7</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>2026-05-21T01:58:21.575411+02:00</d2p1:FollowUpDate>
<d2p1:PatientCellphone>sample string 5</d2p1:PatientCellphone>
<d2p1:PatientDOB>2026-05-21T01:58:21.575411+02:00</d2p1:PatientDOB>
<d2p1:PatientId>b1b0d306-74e9-43ba-a2e5-18499ba8d3b2</d2p1:PatientId>
<d2p1:PatientName>sample string 3</d2p1:PatientName>
<d2p1:PatientSurname>sample string 4</d2p1:PatientSurname>
<d2p1:PracticeId>6e79df6b-f7b5-44d5-8fff-25a3ecf0fa6c</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": "77bb7268-f94c-4b9b-8f7a-9d50a6b8b875",
"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>77bb7268-f94c-4b9b-8f7a-9d50a6b8b875</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>