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": "e2a12aa5-7ee7-473c-b5bf-a197ba775795",
"ReadByPatientOnUtc": "2026-05-31T18:56:41.2453762+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>e2a12aa5-7ee7-473c-b5bf-a197ba775795</CommunicationId> <ReadByPatientOnUtc>2026-05-31T18:56:41.2453762+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/" />