GET v1/user/combinedalerts?page={page}&culture={culture}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
page

integer

Default value is 1

culture

string

Default value is pt-PT

Body Parameters

None.

Response Information

Resource Description

CombinedAlertsModel
NameDescriptionTypeAdditional information
TotalItems

integer

None.

UserMeterAlerts

Collection of UserMeterAlerts

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalItems": 1,
  "UserMeterAlerts": [
    {
      "Id": 1,
      "MeterId": 2,
      "AlertLevel": "sample string 3",
      "AlertType": 1,
      "Date": "2025-05-20T06:34:27.2490871+01:00",
      "Location": "sample string 5",
      "Description": "sample string 6",
      "Acknowleged": true
    },
    {
      "Id": 1,
      "MeterId": 2,
      "AlertLevel": "sample string 3",
      "AlertType": 1,
      "Date": "2025-05-20T06:34:27.2490871+01:00",
      "Location": "sample string 5",
      "Description": "sample string 6",
      "Acknowleged": true
    }
  ]
}

application/xml, text/xml

Sample:
<CombinedAlertsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/I9P.MeterMonitor.API.Models">
  <TotalItems>1</TotalItems>
  <UserMeterAlerts>
    <UserMeterAlerts>
      <Acknowleged>true</Acknowleged>
      <AlertLevel>sample string 3</AlertLevel>
      <AlertType>CommunicationError</AlertType>
      <Date>2025-05-20T06:34:27.2490871+01:00</Date>
      <Description>sample string 6</Description>
      <Id>1</Id>
      <Location>sample string 5</Location>
      <MeterId>2</MeterId>
    </UserMeterAlerts>
    <UserMeterAlerts>
      <Acknowleged>true</Acknowleged>
      <AlertLevel>sample string 3</AlertLevel>
      <AlertType>CommunicationError</AlertType>
      <Date>2025-05-20T06:34:27.2490871+01:00</Date>
      <Description>sample string 6</Description>
      <Id>1</Id>
      <Location>sample string 5</Location>
      <MeterId>2</MeterId>
    </UserMeterAlerts>
  </UserMeterAlerts>
</CombinedAlertsModel>