GET api/v1/account/dashboard/get/notifications

Gets the unread notification details Beta 0.4

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of NotificationDetail
NameDescriptionTypeAdditional information
Id

integer

None.

MemberId

integer

None.

NotificationTypeId

byte

None.

NotificationType

NotificationTypes

None.

Message

string

None.

Created

date

None.

Viewed

boolean

None.

RelatedId

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "memberId": 2,
    "notificationTypeId": 64,
    "notificationType": 1,
    "message": "sample string 4",
    "created": "2026-01-13T03:01:10.1371331+00:00",
    "viewed": true,
    "relatedId": 1
  },
  {
    "id": 1,
    "memberId": 2,
    "notificationTypeId": 64,
    "notificationType": 1,
    "message": "sample string 4",
    "created": "2026-01-13T03:01:10.1371331+00:00",
    "viewed": true,
    "relatedId": 1
  }
]

text/html, text/plain

Sample:
[{"id":1,"memberId":2,"notificationTypeId":64,"notificationType":1,"message":"sample string 4","created":"2026-01-13T03:01:10.1371331+00:00","viewed":true,"relatedId":1},{"id":1,"memberId":2,"notificationTypeId":64,"notificationType":1,"message":"sample string 4","created":"2026-01-13T03:01:10.1371331+00:00","viewed":true,"relatedId":1}]

application/xml, text/xml

Sample:
<ArrayOfNotificationDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Last2Left.Services.DTOs">
  <NotificationDetail>
    <Created>2026-01-13T03:01:10.1371331+00:00</Created>
    <Id>1</Id>
    <MemberId>2</MemberId>
    <Message>sample string 4</Message>
    <NotificationType>GameInvite</NotificationType>
    <NotificationTypeId>64</NotificationTypeId>
    <RelatedId>1</RelatedId>
    <Viewed>true</Viewed>
  </NotificationDetail>
  <NotificationDetail>
    <Created>2026-01-13T03:01:10.1371331+00:00</Created>
    <Id>1</Id>
    <MemberId>2</MemberId>
    <Message>sample string 4</Message>
    <NotificationType>GameInvite</NotificationType>
    <NotificationTypeId>64</NotificationTypeId>
    <RelatedId>1</RelatedId>
    <Viewed>true</Viewed>
  </NotificationDetail>
</ArrayOfNotificationDetail>