Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Syntax

await NoticeManager.GetByUserIdGetExpiredNoticesByUserId(int userId, int? page = null, int? pageSize = null);

...

pageSize: size of the page

Returns

200 OK - List of expired notices, page, page size, total number of expired notices

Example

Code Block
languagec#
const int userId = 123;
var notices = await _noticeManager.GetExpiredNoticesByUserId(userId, 1, 10);

...