POST api/Notifications/CurrentUserList

Notifications messages list by user.

Request Information

URI Parameters

None.

Body Parameters

Filters

NotificationMsgListFilter
NameDescriptionTypeAdditional information
Code

string

None.

BussinessEntityTypeId

BusinessEntityTypeId

None.

IsActive

boolean

None.

Title

string

None.

Body

string

None.

DeactivationDate

date

None.

NotifChannelTypeId

NotificationChannelTypeId

None.

SendDate

date

None.

NotificationTypeIds

Collection of NotificationTypeId

None.

Page

Page

None.

SortedColumns

Collection of Order

None.

Request Formats

application/json, text/json

Sample:
{
  "code": "sample string 2",
  "bussinessEntityTypeId": 1,
  "isActive": true,
  "title": "sample string 3",
  "body": "sample string 4",
  "deactivationDate": "2026-05-08T20:36:59.8382652+02:00",
  "notifChannelTypeId": 1,
  "sendDate": "2026-05-08T20:36:59.8382652+02:00",
  "notificationTypeIds": [
    1,
    1
  ],
  "page": {
    "number": 1,
    "size": 2,
    "skip": 0
  },
  "sortedColumns": [
    {
      "name": "sample string 1",
      "descending": true
    },
    {
      "name": "sample string 1",
      "descending": true
    }
  ]
}

text/html

Sample:
{"code":"sample string 2","bussinessEntityTypeId":1,"isActive":true,"title":"sample string 3","body":"sample string 4","deactivationDate":"2026-05-08T20:36:59.8382652+02:00","notifChannelTypeId":1,"sendDate":"2026-05-08T20:36:59.8382652+02:00","notificationTypeIds":[1,1],"page":{"number":1,"size":2,"skip":0},"sortedColumns":[{"name":"sample string 1","descending":true},{"name":"sample string 1","descending":true}]}

application/xml, text/xml

Sample:
<NotificationMsgListFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.NotificationModule.Application.Dtos.Dtos.NotificationAgg">
  <Page xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.Application.Base.SortAndPage.Entities">
    <Number>1</Number>
    <Size>2</Size>
  </Page>
  <SortedColumns xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.Application.Base.SortAndPage.Entities">
    <Order>
      <Descending>true</Descending>
      <Name>sample string 1</Name>
    </Order>
    <Order>
      <Descending>true</Descending>
      <Name>sample string 1</Name>
    </Order>
  </SortedColumns>
  <Body>sample string 4</Body>
  <BussinessEntityTypeId>Subcontract</BussinessEntityTypeId>
  <Code>sample string 2</Code>
  <DeactivationDate>2026-05-08T20:36:59.8382652+02:00</DeactivationDate>
  <IsActive>true</IsActive>
  <NotifChannelTypeId>Interno</NotifChannelTypeId>
  <NotificationTypeIds xmlns:d2p1="http://schemas.datacontract.org/2004/07/TR.eSAM.NotificationModule.Domain.Aggregates.NotificationAgg">
    <d2p1:NotificationTypeId>Notice</d2p1:NotificationTypeId>
    <d2p1:NotificationTypeId>Notice</d2p1:NotificationTypeId>
  </NotificationTypeIds>
  <SendDate>2026-05-08T20:36:59.8382652+02:00</SendDate>
  <Title>sample string 3</Title>
</NotificationMsgListFilter>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiDataResultOfIPagedListOfNotificationCurrentUserDto
NameDescriptionTypeAdditional information
Data

IPagedListOfNotificationCurrentUserDto

None.

Success

boolean

None.

Message

string

None.

Errors

Collection of CustomError

None.

Warnings

Collection of string

None.

Response Formats

application/json, text/json, text/html

Sample:

Sample not available.