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": "9adb00b8-8efa-468a-aebf-3afb24d33da1",
"subject": "sample string 2",
"message": "sample string 3",
"highImportance": true,
"createdOn": "11/27/2025"
},
{
"id": "9adb00b8-8efa-468a-aebf-3afb24d33da1",
"subject": "sample string 2",
"message": "sample string 3",
"highImportance": true,
"createdOn": "11/27/2025"
}
]
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>2025-11-27T23:27:19.8496401-05:00</createdOn>
<highImportance>true</highImportance>
<id>9adb00b8-8efa-468a-aebf-3afb24d33da1</id>
<message>sample string 3</message>
<subject>sample string 2</subject>
</SystemMessage>
<SystemMessage>
<createdOn>2025-11-27T23:27:19.8496401-05:00</createdOn>
<highImportance>true</highImportance>
<id>9adb00b8-8efa-468a-aebf-3afb24d33da1</id>
<message>sample string 3</message>
<subject>sample string 2</subject>
</SystemMessage>
</ArrayOfSystemMessage>