POST api/Notification/SearchPagelist

Request Information

URI Parameters

None.

Body Parameters

NotificationSearchDto
NameDescriptionTypeAdditional information
NotificationType

string

None.

Title

string

None.

TimeRange

TimeRange

None.

PageIndex

integer

None.

PageSize

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "NotificationType": "sample string 1",
  "Title": "sample string 2",
  "TimeRange": {
    "StartTime": "2026-08-11 21:22:30",
    "EndTime": "2026-08-11 21:22:30"
  },
  "PageIndex": 3,
  "PageSize": 4
}

application/xml, text/xml

Sample:
<NotificationSearchDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MS.Document.Dto.Notification">
  <PageIndex xmlns="http://schemas.datacontract.org/2004/07/MS.Document.Dto">3</PageIndex>
  <PageSize xmlns="http://schemas.datacontract.org/2004/07/MS.Document.Dto">4</PageSize>
  <NotificationType>sample string 1</NotificationType>
  <TimeRange xmlns:d2p1="http://schemas.datacontract.org/2004/07/MS.Document.Dto.Common">
    <d2p1:EndTime>2026-08-11T21:22:30.2499291+08:00</d2p1:EndTime>
    <d2p1:StartTime>2026-08-11T21:22:30.2499291+08:00</d2p1:StartTime>
  </TimeRange>
  <Title>sample string 2</Title>
</NotificationSearchDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseResultOfPageListModelOfNotificationInfoDto
NameDescriptionTypeAdditional information
Status

boolean

None.

ErrorCode

string

None.

ErrorMessage

string

None.

Data

PageListModelOfNotificationInfoDto

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": true,
  "ErrorCode": "sample string 2",
  "ErrorMessage": "sample string 3",
  "Data": {
    "Rows": [
      {
        "Id": 1,
        "Title": "sample string 2",
        "Content": "sample string 3",
        "CreateTime": "2026-08-11 21:22:30",
        "NotificationType": "maintenance",
        "BeginTime": "2026-08-11 21:22:30",
        "EndTime": "2026-08-11 21:22:30"
      },
      {
        "Id": 1,
        "Title": "sample string 2",
        "Content": "sample string 3",
        "CreateTime": "2026-08-11 21:22:30",
        "NotificationType": "maintenance",
        "BeginTime": "2026-08-11 21:22:30",
        "EndTime": "2026-08-11 21:22:30"
      }
    ],
    "Total": 1,
    "PageIndex": 2,
    "PageSize": 3
  }
}

application/xml, text/xml

Sample:
<ResponseResultOfPageListModelOfNotificationInfoDtoPBSTuH4h1BT_P2lkm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Willv.Common">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/MS.Document.Dto">
    <d2p1:PageIndex>2</d2p1:PageIndex>
    <d2p1:PageSize>3</d2p1:PageSize>
    <d2p1:Rows xmlns:d3p1="http://schemas.datacontract.org/2004/07/MS.Document.Dto.Notification">
      <d3p1:NotificationInfoDto>
        <d3p1:BeginTime>2026-08-11T21:22:30.2596773+08:00</d3p1:BeginTime>
        <d3p1:Content>sample string 3</d3p1:Content>
        <d3p1:CreateTime>2026-08-11T21:22:30.2596773+08:00</d3p1:CreateTime>
        <d3p1:EndTime>2026-08-11T21:22:30.2596773+08:00</d3p1:EndTime>
        <d3p1:NotificationType>maintenance</d3p1:NotificationType>
        <d3p1:Title>sample string 2</d3p1:Title>
        <d3p1:Id>1</d3p1:Id>
      </d3p1:NotificationInfoDto>
      <d3p1:NotificationInfoDto>
        <d3p1:BeginTime>2026-08-11T21:22:30.2596773+08:00</d3p1:BeginTime>
        <d3p1:Content>sample string 3</d3p1:Content>
        <d3p1:CreateTime>2026-08-11T21:22:30.2596773+08:00</d3p1:CreateTime>
        <d3p1:EndTime>2026-08-11T21:22:30.2596773+08:00</d3p1:EndTime>
        <d3p1:NotificationType>maintenance</d3p1:NotificationType>
        <d3p1:Title>sample string 2</d3p1:Title>
        <d3p1:Id>1</d3p1:Id>
      </d3p1:NotificationInfoDto>
    </d2p1:Rows>
    <d2p1:Total>1</d2p1:Total>
  </Data>
  <ErrorCode>sample string 2</ErrorCode>
  <ErrorMessage>sample string 3</ErrorMessage>
  <Status>true</Status>
</ResponseResultOfPageListModelOfNotificationInfoDtoPBSTuH4h1BT_P2lkm>