GET {version}/GetAllSystemMessages
Get High Importance System Messages
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
High Importance System Messages
Collection of SystemMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
None. |
|
| subject | string |
None. |
|
| message | string |
None. |
|
| highImportance | boolean |
None. |
|
| createdOn | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": "8a3f5962-ad2a-4856-8874-8ce61a4be2d4",
"subject": "sample string 2",
"message": "sample string 3",
"highImportance": true,
"createdOn": "01/27/2026"
},
{
"id": "8a3f5962-ad2a-4856-8874-8ce61a4be2d4",
"subject": "sample string 2",
"message": "sample string 3",
"highImportance": true,
"createdOn": "01/27/2026"
}
]
application/xml, text/xml
Sample:
<ArrayOfSystemMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model">
<SystemMessage>
<createdOn>2026-01-27T02:37:45.3216921-05:00</createdOn>
<highImportance>true</highImportance>
<id>8a3f5962-ad2a-4856-8874-8ce61a4be2d4</id>
<message>sample string 3</message>
<subject>sample string 2</subject>
</SystemMessage>
<SystemMessage>
<createdOn>2026-01-27T02:37:45.3216921-05:00</createdOn>
<highImportance>true</highImportance>
<id>8a3f5962-ad2a-4856-8874-8ce61a4be2d4</id>
<message>sample string 3</message>
<subject>sample string 2</subject>
</SystemMessage>
</ArrayOfSystemMessage>