GET v1/getNotifyMessage?id={id}

Метод для отримання повідомлення нотифікації.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

ID повідомленння

integer

Required

Body Parameters

None.

Response Information

Resource Description

NotifyMessage
NameDescriptionTypeAdditional information
id

ID повідомлення

integer

None.

recipientAccountID

ID акаунта отримувача

integer

None.

senderAccountID

ID акаунта відправника

integer

None.

text

Текст повідомлення

string

None.

textFormatted

Текст повідомлення відформатований

string

None.

onDate

Дата створення повідомлення у форматі ISO

date

None.

isRead

Ознака чи прочитане повідомлення

boolean

None.

isComplete

Ознака чи виконано повідомлення

boolean

None.

params

Додаткові опціональні параметри користувача

string

None.

deviceID

integer

None.

x

decimal number

None.

y

decimal number

None.

xFrom

decimal number

None.

yFrom

decimal number

None.

dateFrom

date

None.

dateTo

date

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "recipientAccountID": 2,
  "senderAccountID": 3,
  "text": "sample string 4",
  "textFormatted": "sample string 4",
  "onDate": "2026-06-10T07:08:54.7859762+03:00",
  "isRead": true,
  "isComplete": true,
  "params": "sample string 7",
  "deviceID": 0,
  "x": 0.0,
  "y": 0.0,
  "xFrom": 0.0,
  "yFrom": 0.0,
  "dateFrom": null,
  "dateTo": null
}