GET api/System_Status_Notifications/Get?pageNumber={pageNumber}&pageSize={pageSize}

Retrieves all the individual subscribed to notifications in your provider account.

Request Information

Parameters

NameDescriptionAdditional information
pageNumber
The page number to get

Define this parameter in the request URI.

pageSize
The page size to get

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "is_last": true,
  "systemstatusnotifications": [
    {
      "fullname": "sample string 1",
      "emailaddress": "sample string 2",
      "datecreated": "sample string 3",
      "id": "sample string 4"
    },
    {
      "fullname": "sample string 1",
      "emailaddress": "sample string 2",
      "datecreated": "sample string 3",
      "id": "sample string 4"
    },
    {
      "fullname": "sample string 1",
      "emailaddress": "sample string 2",
      "datecreated": "sample string 3",
      "id": "sample string 4"
    }
  ]
}

application/xml, text/xml

Sample:
<system_status_notifications_page xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api.Org">
  <is_last>true</is_last>
  <systemstatusnotifications>
    <system_status_notifications>
      <id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id>
      <datecreated>sample string 3</datecreated>
      <emailaddress>sample string 2</emailaddress>
      <fullname>sample string 1</fullname>
      <id>sample string 4</id>
    </system_status_notifications>
    <system_status_notifications>
      <id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id>
      <datecreated>sample string 3</datecreated>
      <emailaddress>sample string 2</emailaddress>
      <fullname>sample string 1</fullname>
      <id>sample string 4</id>
    </system_status_notifications>
    <system_status_notifications>
      <id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id>
      <datecreated>sample string 3</datecreated>
      <emailaddress>sample string 2</emailaddress>
      <fullname>sample string 1</fullname>
      <id>sample string 4</id>
    </system_status_notifications>
  </systemstatusnotifications>
</system_status_notifications_page>