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
}
}
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
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The paginated collection of TeamNotificationData
The response is of type object
.