GET api/Notification/activities?type={type}&page={page}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
type

string

Required

page

integer

Default value is 0

Body Parameters

None.

Response Information

Resource Description

OutListByType
NameDescriptionTypeAdditional information
data

Collection of OutListItem

None.

TotalNewestCount

integer

None.

Total

integer

None.

Per_Page

integer

None.

Current_Page

integer

None.

Last_Page

integer

None.

From

integer

None.

To

integer

None.

_pageSkip

integer

None.

_pageSize

integer

None.

Success

boolean

None.

Errors

Collection of OutError

None.

Response Formats

application/json, text/json

Sample:
{
  "data": [
    {
      "Title": "sample string 1",
      "Description": "sample string 2",
      "CategoryId": "sample string 3",
      "DateCreated": "2024-09-28T11:25:14.0390684+08:00",
      "Status": "sample string 4",
      "IconPath": "sample string 5"
    },
    {
      "Title": "sample string 1",
      "Description": "sample string 2",
      "CategoryId": "sample string 3",
      "DateCreated": "2024-09-28T11:25:14.0390684+08:00",
      "Status": "sample string 4",
      "IconPath": "sample string 5"
    }
  ],
  "TotalNewestCount": 1,
  "Total": 2,
  "Per_Page": 3,
  "Current_Page": 4,
  "Last_Page": 5,
  "From": 6,
  "To": 7,
  "_pageSkip": 8,
  "_pageSize": 9,
  "Success": true,
  "Errors": [
    {
      "ErrorCode": "sample string 1",
      "ErrorMessage": "sample string 2"
    },
    {
      "ErrorCode": "sample string 1",
      "ErrorMessage": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<Notiifcations.OutListByType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HyperQB.EZTOneApp.Services.Models.ApiModels">
  <Errors>
    <BaseApi.OutError>
      <ErrorCode>sample string 1</ErrorCode>
      <ErrorMessage>sample string 2</ErrorMessage>
    </BaseApi.OutError>
    <BaseApi.OutError>
      <ErrorCode>sample string 1</ErrorCode>
      <ErrorMessage>sample string 2</ErrorMessage>
    </BaseApi.OutError>
  </Errors>
  <Success>true</Success>
  <Current_Page>4</Current_Page>
  <From>6</From>
  <Last_Page>5</Last_Page>
  <Per_Page>3</Per_Page>
  <To>7</To>
  <Total>2</Total>
  <_pageSize>9</_pageSize>
  <_pageSkip>8</_pageSkip>
  <TotalNewestCount>1</TotalNewestCount>
  <data>
    <Notiifcations.OutListItem>
      <CategoryId>sample string 3</CategoryId>
      <DateCreated>2024-09-28T11:25:14.0390684+08:00</DateCreated>
      <Description>sample string 2</Description>
      <IconPath>sample string 5</IconPath>
      <Status>sample string 4</Status>
      <Title>sample string 1</Title>
    </Notiifcations.OutListItem>
    <Notiifcations.OutListItem>
      <CategoryId>sample string 3</CategoryId>
      <DateCreated>2024-09-28T11:25:14.0390684+08:00</DateCreated>
      <Description>sample string 2</Description>
      <IconPath>sample string 5</IconPath>
      <Status>sample string 4</Status>
      <Title>sample string 1</Title>
    </Notiifcations.OutListItem>
  </data>
</Notiifcations.OutListByType>