POST api/PatientCommunications
Marks the communication as read by patient.
Request Information
URI Parameters
None.
Body Parameters
Model used to mark communications as read.
CommunicationReadByPatientModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CommunicationId |
Unique ID of communication. |
globally unique identifier |
None. |
| ReadByPatientOnUtc |
Date (in UTC) of communication is read. |
date |
None. |
Request Formats
application/json, text/json
Sample:
{
"CommunicationId": "8c633ea0-cb1d-4d7b-8cce-14f8148717a1",
"ReadByPatientOnUtc": "2026-04-01T22:06:46.0517317+00:00"
}
application/xml, text/xml
Sample:
<CommunicationReadByPatientModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models.PatientCommunications"> <CommunicationId>8c633ea0-cb1d-4d7b-8cce-14f8148717a1</CommunicationId> <ReadByPatientOnUtc>2026-04-01T22:06:46.0517317+00:00</ReadByPatientOnUtc> </CommunicationReadByPatientModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ObjectNone.
Response Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />