GET v1/selNotifyMessages?SearchText={SearchText}&RowIndex={RowIndex}&RowCount={RowCount}
Метод який повертає масив повідомлень нотифікацій акаунта.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| searchText | string |
None. |
|
| rowIndex |
Індекс останнього результату даних |
integer |
Required |
| rowCount |
Кількість даних |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of NotifyMessage| Name | Description | Type | Additional 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.3017375+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
},
{
"id": 1,
"recipientAccountID": 2,
"senderAccountID": 3,
"text": "sample string 4",
"textFormatted": "sample string 4",
"onDate": "2026-06-10T07:08:54.3017375+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
}
]