Notifications
Notifications are alerts triggered by certain events pertaining to a resource. To receive notifications for a specific resource, a user must have a subscription to the resource.
Objects
Notification
| Path | JSON Type | Format | Description |
|---|---|---|---|
id |
string |
Version 4 UUID | The notification ID |
created |
string |
ISO 8601 timestamp | The instant the notification was created at |
lastModified |
string |
ISO 8601 timestamp | The instant the notification was last modified at |
actor |
object |
Member |
The member whose action raised this notification |
type |
string |
Notification Type | The type of notification |
resolved |
bool |
Whether or not the notification has been read |
{
"id" : "40e2cf56-e49b-42d6-971b-b3f699527a42",
"created" : "2026-02-06T22:34:23.8396",
"lastModified" : "2026-02-06T22:34:23.8396",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"channel" : {
"name" : "no-picture",
"description" : "No picture",
"picture" : "https://s.gravatar.com/avatar/8f4ad8fa0793181b761d030196e62053?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsu.png"
},
"datasetComment" : {
"id" : "5775f514-c6fa-428a-89b2-b44dfd85a3c8",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-02-06T22:34:12.803916",
"lastModified" : "2026-02-06T22:34:12.803917",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "c358149b-4236-4fcf-94dc-ebac846f144e"
},
"dataset" : {
"id" : "c358149b-4236-4fcf-94dc-ebac846f144e",
"published" : "2026-02-06T22:33:36.504975",
"alias" : "analytics-tables",
"workspaceId" : "47ed5d51-6c77-4ed3-ab00-c32193ab2b0e",
"source" : "no-picture",
"title" : "What tables are in our #fantastic data warehouse?",
"description" : "# Overview\nThis example is a standalone data set with no visualisation.\n\n## What tables are in my data warehouse\nOur query in this dataset selects all the tables in the same schema we have configured the workspace to use.\n```SHOW TABLES```\n\n## Notes\nThe query is database specific. The #postgres query is\n\n```SELECT * FROM pg_tables where schemaname = 'cprieqy'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-02-06T22:33:36.504975",
"score" : 1.0
},
"workspace" : {
"id" : "47ed5d51-6c77-4ed3-ab00-c32193ab2b0e",
"name" : "Test Workspace [2026-02-06T22:33:36.096809378]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/40e2cf56-e49b-42d6-971b-b3f699527a42"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/40e2cf56-e49b-42d6-971b-b3f699527a42",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/9bc5754a-3c2f-4433-a1ba-9f063d2a6b40"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/5775f514-c6fa-428a-89b2-b44dfd85a3c8"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/c358149b-4236-4fcf-94dc-ebac846f144e"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/c358149b-4236-4fcf-94dc-ebac846f144e/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/47ed5d51-6c77-4ed3-ab00-c32193ab2b0e"
}
}
}
Formats
Notification Type
string
| Value | Description |
|---|---|
DATASET_ACTIVITY |
Any activity on the dataset |
DATASET_ANOMOLY |
A detected anomoly in the dataset data |
DATASET_COMMENT |
A comment on the dataset |
DATASET_LIKE |
A like recorded on the dataset |
DATASET_MESSAGE |
A message about the dataset |
JOB_STARTED |
A job started for a pipeline |
JOB_ENDED |
A job ended for a pipeline |
Requests
- View all notifications
- View all notifications for a workspace
- View a notification
- Refresh notifications
- Delete a notification
See Also
View all notifications
GET
/api/notifications?all={all}&before={before}&since={since}
Returns all notifications for the authenticated user profile.
Request
Query Parameters
| Parameter | Required | Format | Default Value | Description |
|---|---|---|---|---|
all |
No | Boolean | false |
Whether or not to return both resolved and unresolved notifications |
before |
No | ISO 8601 timestamp | The instant at which the request was made | The instant to return any notifications created before |
since |
No | ISO 8601 timestamp | 2021-02-11T11:12 |
The instant to return any notifications created since |
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/notifications?before=2026-02-06T22%3A34%3A24.433885964&since=2021-01-01T00%3A00' -i -X GET
Python (requests)
import requests
url = "https://app.matatika.com/api/notifications?before=2026-02-06T22%3A34%3A24.433885964&since=2021-01-01T00%3A00"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Notification collection with HAL links.
{
"_embedded" : {
"notifications" : [ {
"id" : "40e2cf56-e49b-42d6-971b-b3f699527a42",
"created" : "2026-02-06T22:34:23.8396",
"lastModified" : "2026-02-06T22:34:23.8396",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"channel" : {
"name" : "no-picture",
"description" : "No picture",
"picture" : "https://s.gravatar.com/avatar/8f4ad8fa0793181b761d030196e62053?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsu.png"
},
"datasetComment" : {
"id" : "5775f514-c6fa-428a-89b2-b44dfd85a3c8",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-02-06T22:34:12.803916",
"lastModified" : "2026-02-06T22:34:12.803917",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "c358149b-4236-4fcf-94dc-ebac846f144e"
},
"dataset" : {
"id" : "c358149b-4236-4fcf-94dc-ebac846f144e",
"published" : "2026-02-06T22:33:36.504975",
"alias" : "analytics-tables",
"workspaceId" : "47ed5d51-6c77-4ed3-ab00-c32193ab2b0e",
"source" : "no-picture",
"title" : "What tables are in our #fantastic data warehouse?",
"description" : "# Overview\nThis example is a standalone data set with no visualisation.\n\n## What tables are in my data warehouse\nOur query in this dataset selects all the tables in the same schema we have configured the workspace to use.\n```SHOW TABLES```\n\n## Notes\nThe query is database specific. The #postgres query is\n\n```SELECT * FROM pg_tables where schemaname = 'cprieqy'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-02-06T22:33:36.504975",
"score" : 1.0
},
"workspace" : {
"id" : "47ed5d51-6c77-4ed3-ab00-c32193ab2b0e",
"name" : "Test Workspace [2026-02-06T22:33:36.096809378]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/40e2cf56-e49b-42d6-971b-b3f699527a42"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/40e2cf56-e49b-42d6-971b-b3f699527a42",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/9bc5754a-3c2f-4433-a1ba-9f063d2a6b40"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/5775f514-c6fa-428a-89b2-b44dfd85a3c8"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/c358149b-4236-4fcf-94dc-ebac846f144e"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/c358149b-4236-4fcf-94dc-ebac846f144e/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/47ed5d51-6c77-4ed3-ab00-c32193ab2b0e"
}
}
}, {
"id" : "ad59267e-0298-48fa-9005-372e47358d1f",
"created" : "2026-02-06T22:34:23.781405",
"lastModified" : "2026-02-06T22:34:23.781405",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"channel" : {
"name" : "no-picture",
"description" : "No picture",
"picture" : "https://s.gravatar.com/avatar/8f4ad8fa0793181b761d030196e62053?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsu.png"
},
"datasetComment" : {
"id" : "28993e17-cf96-4305-b23c-5af0a2c8871c",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-02-06T22:34:12.649664",
"lastModified" : "2026-02-06T22:34:12.649664",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "c358149b-4236-4fcf-94dc-ebac846f144e"
},
"dataset" : {
"id" : "c358149b-4236-4fcf-94dc-ebac846f144e",
"published" : "2026-02-06T22:33:36.504975",
"alias" : "analytics-tables",
"workspaceId" : "47ed5d51-6c77-4ed3-ab00-c32193ab2b0e",
"source" : "no-picture",
"title" : "What tables are in our #fantastic data warehouse?",
"description" : "# Overview\nThis example is a standalone data set with no visualisation.\n\n## What tables are in my data warehouse\nOur query in this dataset selects all the tables in the same schema we have configured the workspace to use.\n```SHOW TABLES```\n\n## Notes\nThe query is database specific. The #postgres query is\n\n```SELECT * FROM pg_tables where schemaname = 'cprieqy'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-02-06T22:33:36.504975",
"score" : 1.0
},
"workspace" : {
"id" : "47ed5d51-6c77-4ed3-ab00-c32193ab2b0e",
"name" : "Test Workspace [2026-02-06T22:33:36.096809378]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/ad59267e-0298-48fa-9005-372e47358d1f"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/ad59267e-0298-48fa-9005-372e47358d1f",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/9bc5754a-3c2f-4433-a1ba-9f063d2a6b40"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/28993e17-cf96-4305-b23c-5af0a2c8871c"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/c358149b-4236-4fcf-94dc-ebac846f144e"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/c358149b-4236-4fcf-94dc-ebac846f144e/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/47ed5d51-6c77-4ed3-ab00-c32193ab2b0e"
}
}
}, {
"id" : "43936d22-6002-454d-a75e-23d8e9bb8411",
"created" : "2026-02-06T22:34:23.551384",
"lastModified" : "2026-02-06T22:34:23.551385",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"channel" : {
"name" : "no-picture",
"description" : "No picture",
"picture" : "https://s.gravatar.com/avatar/8f4ad8fa0793181b761d030196e62053?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsu.png"
},
"datasetComment" : {
"id" : "6506aae4-ddc7-4e9b-9529-52460b94e134",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-02-06T22:34:12.513806",
"lastModified" : "2026-02-06T22:34:12.513806",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "c358149b-4236-4fcf-94dc-ebac846f144e"
},
"dataset" : {
"id" : "c358149b-4236-4fcf-94dc-ebac846f144e",
"published" : "2026-02-06T22:33:36.504975",
"alias" : "analytics-tables",
"workspaceId" : "47ed5d51-6c77-4ed3-ab00-c32193ab2b0e",
"source" : "no-picture",
"title" : "What tables are in our #fantastic data warehouse?",
"description" : "# Overview\nThis example is a standalone data set with no visualisation.\n\n## What tables are in my data warehouse\nOur query in this dataset selects all the tables in the same schema we have configured the workspace to use.\n```SHOW TABLES```\n\n## Notes\nThe query is database specific. The #postgres query is\n\n```SELECT * FROM pg_tables where schemaname = 'cprieqy'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-02-06T22:33:36.504975",
"score" : 1.0
},
"workspace" : {
"id" : "47ed5d51-6c77-4ed3-ab00-c32193ab2b0e",
"name" : "Test Workspace [2026-02-06T22:33:36.096809378]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/43936d22-6002-454d-a75e-23d8e9bb8411"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/43936d22-6002-454d-a75e-23d8e9bb8411",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/9bc5754a-3c2f-4433-a1ba-9f063d2a6b40"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/6506aae4-ddc7-4e9b-9529-52460b94e134"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/c358149b-4236-4fcf-94dc-ebac846f144e"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/c358149b-4236-4fcf-94dc-ebac846f144e/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/47ed5d51-6c77-4ed3-ab00-c32193ab2b0e"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications?before=2026-02-06T22%3A34%3A24.433885964&since=2021-01-01T00%3A00&page=0&size=20"
}
},
"page" : {
"size" : 20,
"totalElements" : 3,
"totalPages" : 1,
"number" : 0
}
}
View all notifications for a workspace
GET
/api/workspaces/{workspaceId}/notifications?all={all}&before={before}&since={since}
Returns all notifications for the workspace {workspace-id}.
Prerequisites
- Workspace
{workspace-id}must exist
Request
Query Parameters
| Parameter | Required | Format | Default Value | Description |
|---|---|---|---|---|
all |
No | Boolean | Whether or not to return both resolved and unresolved notifications | |
before |
No | ISO 8601 timestamp | The instant at which the request was made | The instant to return any notifications created before |
since |
No | ISO 8601 timestamp | 2021-02-11T11:12 |
The instant to return any notifications created since |
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/workspaces/47ed5d51-6c77-4ed3-ab00-c32193ab2b0e/notifications?before=2026-02-06T22%3A34%3A24.535785982&since=2021-01-01T00%3A00' -i -X GET
Python (requests)
import requests
url = "https://app.matatika.com/api/workspaces/47ed5d51-6c77-4ed3-ab00-c32193ab2b0e/notifications?before=2026-02-06T22%3A34%3A24.535785982&since=2021-01-01T00%3A00"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Notification collection with HAL links.
{
"_embedded" : {
"notifications" : [ {
"id" : "40e2cf56-e49b-42d6-971b-b3f699527a42",
"created" : "2026-02-06T22:34:23.8396",
"lastModified" : "2026-02-06T22:34:23.8396",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"channel" : {
"name" : "no-picture",
"description" : "No picture",
"picture" : "https://s.gravatar.com/avatar/8f4ad8fa0793181b761d030196e62053?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsu.png"
},
"datasetComment" : {
"id" : "5775f514-c6fa-428a-89b2-b44dfd85a3c8",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-02-06T22:34:12.803916",
"lastModified" : "2026-02-06T22:34:12.803917",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "c358149b-4236-4fcf-94dc-ebac846f144e"
},
"dataset" : {
"id" : "c358149b-4236-4fcf-94dc-ebac846f144e",
"published" : "2026-02-06T22:33:36.504975",
"alias" : "analytics-tables",
"workspaceId" : "47ed5d51-6c77-4ed3-ab00-c32193ab2b0e",
"source" : "no-picture",
"title" : "What tables are in our #fantastic data warehouse?",
"description" : "# Overview\nThis example is a standalone data set with no visualisation.\n\n## What tables are in my data warehouse\nOur query in this dataset selects all the tables in the same schema we have configured the workspace to use.\n```SHOW TABLES```\n\n## Notes\nThe query is database specific. The #postgres query is\n\n```SELECT * FROM pg_tables where schemaname = 'cprieqy'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-02-06T22:33:36.504975",
"score" : 1.0
},
"workspace" : {
"id" : "47ed5d51-6c77-4ed3-ab00-c32193ab2b0e",
"name" : "Test Workspace [2026-02-06T22:33:36.096809378]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/40e2cf56-e49b-42d6-971b-b3f699527a42"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/40e2cf56-e49b-42d6-971b-b3f699527a42",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/9bc5754a-3c2f-4433-a1ba-9f063d2a6b40"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/5775f514-c6fa-428a-89b2-b44dfd85a3c8"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/c358149b-4236-4fcf-94dc-ebac846f144e"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/c358149b-4236-4fcf-94dc-ebac846f144e/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/47ed5d51-6c77-4ed3-ab00-c32193ab2b0e"
}
}
}, {
"id" : "ad59267e-0298-48fa-9005-372e47358d1f",
"created" : "2026-02-06T22:34:23.781405",
"lastModified" : "2026-02-06T22:34:23.781405",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"channel" : {
"name" : "no-picture",
"description" : "No picture",
"picture" : "https://s.gravatar.com/avatar/8f4ad8fa0793181b761d030196e62053?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsu.png"
},
"datasetComment" : {
"id" : "28993e17-cf96-4305-b23c-5af0a2c8871c",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-02-06T22:34:12.649664",
"lastModified" : "2026-02-06T22:34:12.649664",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "c358149b-4236-4fcf-94dc-ebac846f144e"
},
"dataset" : {
"id" : "c358149b-4236-4fcf-94dc-ebac846f144e",
"published" : "2026-02-06T22:33:36.504975",
"alias" : "analytics-tables",
"workspaceId" : "47ed5d51-6c77-4ed3-ab00-c32193ab2b0e",
"source" : "no-picture",
"title" : "What tables are in our #fantastic data warehouse?",
"description" : "# Overview\nThis example is a standalone data set with no visualisation.\n\n## What tables are in my data warehouse\nOur query in this dataset selects all the tables in the same schema we have configured the workspace to use.\n```SHOW TABLES```\n\n## Notes\nThe query is database specific. The #postgres query is\n\n```SELECT * FROM pg_tables where schemaname = 'cprieqy'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-02-06T22:33:36.504975",
"score" : 1.0
},
"workspace" : {
"id" : "47ed5d51-6c77-4ed3-ab00-c32193ab2b0e",
"name" : "Test Workspace [2026-02-06T22:33:36.096809378]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/ad59267e-0298-48fa-9005-372e47358d1f"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/ad59267e-0298-48fa-9005-372e47358d1f",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/9bc5754a-3c2f-4433-a1ba-9f063d2a6b40"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/28993e17-cf96-4305-b23c-5af0a2c8871c"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/c358149b-4236-4fcf-94dc-ebac846f144e"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/c358149b-4236-4fcf-94dc-ebac846f144e/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/47ed5d51-6c77-4ed3-ab00-c32193ab2b0e"
}
}
}, {
"id" : "43936d22-6002-454d-a75e-23d8e9bb8411",
"created" : "2026-02-06T22:34:23.551384",
"lastModified" : "2026-02-06T22:34:23.551385",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"channel" : {
"name" : "no-picture",
"description" : "No picture",
"picture" : "https://s.gravatar.com/avatar/8f4ad8fa0793181b761d030196e62053?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsu.png"
},
"datasetComment" : {
"id" : "6506aae4-ddc7-4e9b-9529-52460b94e134",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-02-06T22:34:12.513806",
"lastModified" : "2026-02-06T22:34:12.513806",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "c358149b-4236-4fcf-94dc-ebac846f144e"
},
"dataset" : {
"id" : "c358149b-4236-4fcf-94dc-ebac846f144e",
"published" : "2026-02-06T22:33:36.504975",
"alias" : "analytics-tables",
"workspaceId" : "47ed5d51-6c77-4ed3-ab00-c32193ab2b0e",
"source" : "no-picture",
"title" : "What tables are in our #fantastic data warehouse?",
"description" : "# Overview\nThis example is a standalone data set with no visualisation.\n\n## What tables are in my data warehouse\nOur query in this dataset selects all the tables in the same schema we have configured the workspace to use.\n```SHOW TABLES```\n\n## Notes\nThe query is database specific. The #postgres query is\n\n```SELECT * FROM pg_tables where schemaname = 'cprieqy'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-02-06T22:33:36.504975",
"score" : 1.0
},
"workspace" : {
"id" : "47ed5d51-6c77-4ed3-ab00-c32193ab2b0e",
"name" : "Test Workspace [2026-02-06T22:33:36.096809378]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/43936d22-6002-454d-a75e-23d8e9bb8411"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/43936d22-6002-454d-a75e-23d8e9bb8411",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/9bc5754a-3c2f-4433-a1ba-9f063d2a6b40"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/6506aae4-ddc7-4e9b-9529-52460b94e134"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/c358149b-4236-4fcf-94dc-ebac846f144e"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/c358149b-4236-4fcf-94dc-ebac846f144e/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/47ed5d51-6c77-4ed3-ab00-c32193ab2b0e"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/workspaces/47ed5d51-6c77-4ed3-ab00-c32193ab2b0e/notifications?before=2026-02-06T22%3A34%3A24.535785982&since=2021-01-01T00%3A00&page=0&size=20"
}
},
"page" : {
"size" : 20,
"totalElements" : 3,
"totalPages" : 1,
"number" : 0
}
}
View a notification
GET
/api/notifications/{notification-id}
Returns the notification {notification-id}.
Prerequisites
- Notification
{notification-id}must exist
Request
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/notifications/40e2cf56-e49b-42d6-971b-b3f699527a42' -i -X GET
Python (requests)
import requests
url = "https://app.matatika.com/api/notifications/40e2cf56-e49b-42d6-971b-b3f699527a42"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Notification with HAL links.
{
"id" : "40e2cf56-e49b-42d6-971b-b3f699527a42",
"created" : "2026-02-06T22:34:23.8396",
"lastModified" : "2026-02-06T22:34:23.8396",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"channel" : {
"name" : "no-picture",
"description" : "No picture",
"picture" : "https://s.gravatar.com/avatar/8f4ad8fa0793181b761d030196e62053?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsu.png"
},
"datasetComment" : {
"id" : "5775f514-c6fa-428a-89b2-b44dfd85a3c8",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-02-06T22:34:12.803916",
"lastModified" : "2026-02-06T22:34:12.803917",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "c358149b-4236-4fcf-94dc-ebac846f144e"
},
"dataset" : {
"id" : "c358149b-4236-4fcf-94dc-ebac846f144e",
"published" : "2026-02-06T22:33:36.504975",
"alias" : "analytics-tables",
"workspaceId" : "47ed5d51-6c77-4ed3-ab00-c32193ab2b0e",
"source" : "no-picture",
"title" : "What tables are in our #fantastic data warehouse?",
"description" : "# Overview\nThis example is a standalone data set with no visualisation.\n\n## What tables are in my data warehouse\nOur query in this dataset selects all the tables in the same schema we have configured the workspace to use.\n```SHOW TABLES```\n\n## Notes\nThe query is database specific. The #postgres query is\n\n```SELECT * FROM pg_tables where schemaname = 'cprieqy'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-02-06T22:33:36.504975",
"score" : 1.0
},
"workspace" : {
"id" : "47ed5d51-6c77-4ed3-ab00-c32193ab2b0e",
"name" : "Test Workspace [2026-02-06T22:33:36.096809378]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/40e2cf56-e49b-42d6-971b-b3f699527a42"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/40e2cf56-e49b-42d6-971b-b3f699527a42",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/9bc5754a-3c2f-4433-a1ba-9f063d2a6b40"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/5775f514-c6fa-428a-89b2-b44dfd85a3c8"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/c358149b-4236-4fcf-94dc-ebac846f144e"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/c358149b-4236-4fcf-94dc-ebac846f144e/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/47ed5d51-6c77-4ed3-ab00-c32193ab2b0e"
}
}
}
Refresh notifications
PUT
/api/notifications?since={since}&markAsResolved={markAsResolved}
Returns new notifications for the authenticated user profile, optionally marking existing notifications as resolved up to the moment the request was made or the supplied since parameter.
Request
Query Parameters
| Parameter | Required | Format | Default Value | Description |
|---|---|---|---|---|
since |
No | ISO 8601 timestamp | The instant at which the request was made | The instant to fetch any new notifications from |
markAsResolved |
No | Boolean | true |
Whether or not to mark notifications created up to since as resolved |
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/notifications?since=2026-02-06T22%3A34%3A24.967697' -i -X PUT \
-H 'Content-Type: application/json'
Python (requests)
import requests
url = "https://app.matatika.com/api/notifications?since=2026-02-06T22%3A34%3A24.967697"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("PUT", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Notification collection with HAL links.
{
"_embedded" : {
"notifications" : [ {
"id" : "f1caaa8d-583e-4d38-a76d-5f1002b6db67",
"created" : "2026-02-06T22:34:27.137295",
"lastModified" : "2026-02-06T22:34:27.137295",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"channel" : {
"name" : "no-picture",
"description" : "No picture",
"picture" : "https://s.gravatar.com/avatar/8f4ad8fa0793181b761d030196e62053?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsu.png"
},
"datasetComment" : {
"id" : "e5f5e57e-9016-4fe1-af99-0f82e32b61f7",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-02-06T22:34:26.062725",
"lastModified" : "2026-02-06T22:34:26.062726",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "c358149b-4236-4fcf-94dc-ebac846f144e"
},
"dataset" : {
"id" : "c358149b-4236-4fcf-94dc-ebac846f144e",
"published" : "2026-02-06T22:33:36.504975",
"alias" : "analytics-tables",
"workspaceId" : "47ed5d51-6c77-4ed3-ab00-c32193ab2b0e",
"source" : "no-picture",
"title" : "What tables are in our #fantastic data warehouse?",
"description" : "# Overview\nThis example is a standalone data set with no visualisation.\n\n## What tables are in my data warehouse\nOur query in this dataset selects all the tables in the same schema we have configured the workspace to use.\n```SHOW TABLES```\n\n## Notes\nThe query is database specific. The #postgres query is\n\n```SELECT * FROM pg_tables where schemaname = 'cprieqy'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-02-06T22:33:36.504975",
"score" : 1.0
},
"workspace" : {
"id" : "47ed5d51-6c77-4ed3-ab00-c32193ab2b0e",
"name" : "Test Workspace [2026-02-06T22:33:36.096809378]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/f1caaa8d-583e-4d38-a76d-5f1002b6db67"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/f1caaa8d-583e-4d38-a76d-5f1002b6db67",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/9bc5754a-3c2f-4433-a1ba-9f063d2a6b40"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/e5f5e57e-9016-4fe1-af99-0f82e32b61f7"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/c358149b-4236-4fcf-94dc-ebac846f144e"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/c358149b-4236-4fcf-94dc-ebac846f144e/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/47ed5d51-6c77-4ed3-ab00-c32193ab2b0e"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications?since=2026-02-06T22%3A34%3A24.967697&page=0&size=20"
}
},
"page" : {
"size" : 20,
"totalElements" : 1,
"totalPages" : 1,
"number" : 0
}
}
Delete a notification
DELETE
/api/notifications/{notification-id}
Deletes the notification {notification-id}.
Prerequisites
- Notification
{notification-id}must exist
Request
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/notifications/40e2cf56-e49b-42d6-971b-b3f699527a42' -i -X DELETE
Python (requests)
import requests
url = "https://app.matatika.com/api/notifications/40e2cf56-e49b-42d6-971b-b3f699527a42"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("DELETE", url, headers=headers)
print(response.text.encode('utf8'))
Response
204 No Content
No response body provided.