Accessing Notifications

The of both notifications and logs happens on the server side.

Inspecting the web traffic of either the /logs or /notifications pages, you see on each page request, we make a request to a new endpoint. This endpoint is respective to the current page you are looking for.

Fetches a users notifications given a page number.

GET /users/notifications/{page_number}

Headers

Name
Type
Description

Authorization*

String

Your Lambda Authorization Token

{
    "success": true,
    "data": [
        {
            "message": string,
            "link": string,
            "rank": string
        },
        ...
    ]
}

Last updated