GET api/SecureMessagesToPractice/{id}
Gets a sent secure message.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
Unique ID of the message. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
MessageToPracticeModelName | Description | Type | Additional information |
---|---|---|---|
Id |
Unique ID of the message (Read only). |
globally unique identifier |
None. |
CreationDate |
Date of creation of the message. |
string |
None. |
Priority |
Priority of the message. Possible values are: Normal, High, Low. |
string |
None. |
Status |
Status of the message. Possible values are Draft, Sent. |
string |
None. |
Read |
Indicates if message is read. |
boolean |
None. |
SecureRecipientId |
Unique ID of the recipient of the message. |
globally unique identifier |
None. |
SecureRecipientName |
Name of the secure recipient. |
string |
None. |
Subject |
Subject of the message. |
string |
None. |
Body |
Body of the message. |
string |
None. |
SentDate |
Date when the message was sent (Read only). |
string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Id": "2497ed04-e861-4f99-9172-b9495a129d6c", "CreationDate": "sample string 2", "Priority": "sample string 3", "Status": "sample string 4", "Read": true, "SecureRecipientId": "7d104692-92cd-430c-a293-ee2d5688ba5c", "SecureRecipientName": "sample string 7", "Subject": "sample string 8", "Body": "sample string 9", "SentDate": "sample string 10" }
application/xml, text/xml
Sample:
<MessageToPracticeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models.SecureMessages"> <Body>sample string 9</Body> <CreationDate>sample string 2</CreationDate> <Id>2497ed04-e861-4f99-9172-b9495a129d6c</Id> <Priority>sample string 3</Priority> <Read>true</Read> <SecureRecipientId>7d104692-92cd-430c-a293-ee2d5688ba5c</SecureRecipientId> <SecureRecipientName>sample string 7</SecureRecipientName> <SentDate>sample string 10</SentDate> <Status>sample string 4</Status> <Subject>sample string 8</Subject> </MessageToPracticeModel>