GET {version}/GetAllSystemMessages

Get High Importance System Messages

Request Information

URI Parameters

NameDescriptionTypeAdditional information
version

string

None.

Body Parameters

None.

Response Information

Resource Description

High Importance System Messages

Collection of SystemMessage
NameDescriptionTypeAdditional 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": "a6be62df-6833-4129-901f-11fc394fa836",
    "subject": "sample string 2",
    "message": "sample string 3",
    "highImportance": true,
    "createdOn": "10/16/2024"
  },
  {
    "id": "a6be62df-6833-4129-901f-11fc394fa836",
    "subject": "sample string 2",
    "message": "sample string 3",
    "highImportance": true,
    "createdOn": "10/16/2024"
  }
]

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>2024-10-16T12:25:29.162619-04:00</createdOn>
    <highImportance>true</highImportance>
    <id>a6be62df-6833-4129-901f-11fc394fa836</id>
    <message>sample string 3</message>
    <subject>sample string 2</subject>
  </SystemMessage>
  <SystemMessage>
    <createdOn>2024-10-16T12:25:29.162619-04:00</createdOn>
    <highImportance>true</highImportance>
    <id>a6be62df-6833-4129-901f-11fc394fa836</id>
    <message>sample string 3</message>
    <subject>sample string 2</subject>
  </SystemMessage>
</ArrayOfSystemMessage>