GET
/
api
/
notification
Get notification messsages
curl --request GET \
  --url https://api.coinfer.ai/api/notification \
  --header 'Authorization: Bearer <token>'
{
  "status": "<string>",
  "data": {
    "total": 123,
    "page": 123,
    "count_per_page": 123,
    "objects": [
      {
        "id": 123,
        "event": "<string>",
        "title": "<string>",
        "message": "<string>",
        "msg_object": "<string>",
        "msg_verb": "<string>",
        "created_at": "<string>",
        "read_at": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page_no
integer
default:1

page number

Required range: x > 0
page_size
integer
default:100

page size

Required range: 0 < x <= 1000
status
enum<string>
required

Filter the notification message by read status

Available options:
all,
read,
unread

Response

OK

status
string
required
Allowed value: "ok"
data
object
required