GET apioauth/matrixv2/services/{serviceId}/alertlogs

Get the alert log for a service, including videos

Request Information

URI Parameters

NameDescriptionTypeAdditional information
serviceId

The service id queried

unsigned integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of AlertLogResponse
NameDescriptionTypeAdditional information
AlertType

AlertType

None.

AlertTime

date

None.

PrimaryFileURL

string

None.

SecondaryFileURL

string

None.

PrimaryComment

string

None.

SecondaryComment

string

None.

MessageType

event_t

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "AlertType": 0,
    "AlertTime": "2025-04-27T16:33:49.551542+00:00",
    "PrimaryFileURL": "sample string 2",
    "SecondaryFileURL": "sample string 3",
    "PrimaryComment": "sample string 4",
    "SecondaryComment": "sample string 5",
    "MessageType": 0
  },
  {
    "AlertType": 0,
    "AlertTime": "2025-04-27T16:33:49.551542+00:00",
    "PrimaryFileURL": "sample string 2",
    "SecondaryFileURL": "sample string 3",
    "PrimaryComment": "sample string 4",
    "SecondaryComment": "sample string 5",
    "MessageType": 0
  }
]

application/xml, text/xml

Sample:
<ArrayOfAlertLogResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <AlertLogResponse>
    <AlertType>ACCOUNT_ACTIVATION_10_DAY</AlertType>
    <AlertTime>2025-04-27T16:33:49.551542+00:00</AlertTime>
    <PrimaryFileURL>sample string 2</PrimaryFileURL>
    <SecondaryFileURL>sample string 3</SecondaryFileURL>
    <PrimaryComment>sample string 4</PrimaryComment>
    <SecondaryComment>sample string 5</SecondaryComment>
    <MessageType>NO_EVENT</MessageType>
  </AlertLogResponse>
  <AlertLogResponse>
    <AlertType>ACCOUNT_ACTIVATION_10_DAY</AlertType>
    <AlertTime>2025-04-27T16:33:49.551542+00:00</AlertTime>
    <PrimaryFileURL>sample string 2</PrimaryFileURL>
    <SecondaryFileURL>sample string 3</SecondaryFileURL>
    <PrimaryComment>sample string 4</PrimaryComment>
    <SecondaryComment>sample string 5</SecondaryComment>
    <MessageType>NO_EVENT</MessageType>
  </AlertLogResponse>
</ArrayOfAlertLogResponse>