Get notifies by Manager
GetNotifyListByManager¶
GetNotifyListByManager
Description: Retrieves a paginated list of notifications for the currently authenticated user. Supports filtering and returns structured JSON content for each notification.
Note
Request should include Authorization token
Request Parameters¶
| Name | Type | Required | Description |
|---|---|---|---|
| limit | int | Yes | Maximum number of notifications to return |
| offset | int | Yes | Number of records to skip (pagination) |
| filter | string | Yes | Filter string applied to the notifications |
Request Example¶
{
"limit": 10,
"offset": 0,
"filter": "*"
}
Response Parameters¶
| Name | Type | Description |
|---|---|---|
| structure | array | List of field names returned in each row |
| rows | array | Array of notifications; each row contains ordered fields |
Each row contains:
- id
- token
- message (JSON)
- create_time
- open_time
- type
- status
- level
- description (JSON)
- data (JSON)
Response Example (truncated)¶
{
"structure": ["id", "token", "message", "create_time", "..."],
"rows": [
[
101,
"alert-abc-123",
{ "title": "Margin Call", "body": "Account below threshold" },
1693238400,
1693238500,
"system",
"unread",
"critical",
{ "details": "Risk threshold breached" },
{ "symbol": "EURUSD", "price": 1.1040 }
]
]
}