Get Notification List

Get Notification List

You can use this operation to get a list of LCM notifications. The list might contain all available notifications, a subset defined by the page size or a subset matching the specified filter.

Request
URI
GET
https://{api_host}/https://{{host}}:{{port}}/api/v5/notification
COPY
Query Parameters
integer
pageSize
Optional

Number of notifications to be returned. Default: 20

integer
page
Optional

The page index. Default: 1

string of array
filterKey
Optional

If filterValue is also specified, list of notification keys to use for filtering

array
filterValue
Optional

If filterKey is also specified, list of notifications values to use for filtering

string
sortKey
Optional

The key of the notifications to sort by

boolean
asc
Optional

Sort the result ascending. If not defined, resulting notifications will be in chronological order, otherwise alphabetically sorted ascending (true) or descending (false).


Responses
200

List of LCM notifications.

[
    {
        "id": 0,
        "creationDate": "string",
        "title": "string",
        "content": "string",
        "status": "string",
        "type": "string",
        "metadata": {
            "environmentId": "string",
            "productId": "string",
            "taskId": "string",
            "subProperty": [
                "string"
            ],
            "eventTimestamp": 0
        }
    }
]

401

Unauthorized access

[
    {
        "id": 0,
        "creationDate": "string",
        "title": "string",
        "content": "string",
        "status": "string",
        "type": "string",
        "metadata": {
            "environmentId": "string",
            "productId": "string",
            "taskId": "string",
            "subProperty": [
                "string"
            ],
            "eventTimestamp": 0
        }
    }
]