POST
/
users
/
read-notifications
curl --request POST \
  --url https://api-staging.boost.xyz/users/read-notifications \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "pageNo": 123,
  "pageSize": 123,
  "lastReadNotification": "<string>"
}'
{
  "notifications": [
    {
      "completerAddress": "<string>",
      "boostMetadata": {
        "image": "<string>",
        "postType": "<string>",
        "profileName": "<string>"
      },
      "boostId": "<string>",
      "completerEnsName": "<string>",
      "completerEnsAvatarUrl": "<string>",
      "isUnread": true,
      "createdAt": "<string>",
      "type": "creator-completion",
      "completerRewardAmount": "<string>",
      "completerRewardDecimals": 123,
      "completerRewardTokenSymbol": "<string>",
      "creatorEarnings": "<string>"
    }
  ],
  "page": 1,
  "pageSize": 1
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

Success

The response is of type object.