GET
/
v1
/
platform
/
notifications
cURL
curl --request GET \
  --url https://api.comm.com/api/v1/platform/notifications \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "type": "info",
      "title": "<string>",
      "content": "<string>",
      "created_at": "<string>",
      "read_at": "<string>",
      "team_id": "<string>",
      "id": "<string>",
      "meta": {
        "object_id": "<string>",
        "object_type": "integration"
      },
      "hash": "<string>"
    }
  ],
  "links": [
    {
      "url": "<string>",
      "label": "<string>",
      "active": true
    }
  ],
  "meta": {
    "current_page": 123,
    "first_page_url": "<string>",
    "from": 123,
    "last_page": 123,
    "last_page_url": "<string>",
    "next_page_url": "<string>",
    "path": "<string>",
    "per_page": 123,
    "prev_page_url": "<string>",
    "to": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer | null
per_page
integer | null
search_ids
string<uuid>[]

Response

200
application/json

The paginated collection of TeamNotificationData

The response is of type object.