me

Get a notification's details.

This endpoint will retrieve the details of a notification.

get/me/notifications/{notificationUUID}

Path parameters

notificationUUIDstring required

UUID of the notification to be retrieved.

Response

Successful POST Notifications Details JSON response

object required

Example response

{
  "data": {
    "id": "1094845f-c175-462d-8aec-9bbad4af232f",
    "type": "notifications",
    "href": "/v1/me/notifications/1094845f-c175-462d-8aec-9bbad4af232f",
    "attributes": {
      "type": "NewSession",
      "isRead": true,
      "data": {
        "id": 2,
        "ip": "127.0.0.1"
      },
      "string": "A new client has logged in to your account. (IP: 127.0.0.1)",
      "createdAt": "2020-07-27 13:57:12"
    }
  }
}

Changes