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" : "222d11af-46ca-425c-bb2b-5558e73ae627",
"created" : "2025-12-19T09:51:15.302226",
"lastModified" : "2025-12-19T09:51:15.302226",
"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" : "0928ffa6-6e49-4132-8d1c-50caf5647811",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2025-12-19T09:51:12.349303",
"lastModified" : "2025-12-19T09:51:12.349303",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "049479ac-38d9-4ddb-b14a-a95ede20c358"
},
"dataset" : {
"id" : "049479ac-38d9-4ddb-b14a-a95ede20c358",
"published" : "2025-12-19T09:51:06.477635",
"alias" : "analytics-tables",
"workspaceId" : "5d50edf2-e5e0-4849-bc2c-76f66741eb30",
"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 = 'chmktdq'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2025-12-19T09:51:06.477635",
"score" : 1.0
},
"workspace" : {
"id" : "5d50edf2-e5e0-4849-bc2c-76f66741eb30",
"name" : "Test Workspace [2025-12-19T09:51:06.093839500]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/222d11af-46ca-425c-bb2b-5558e73ae627"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/222d11af-46ca-425c-bb2b-5558e73ae627",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/f342fbb5-e69d-49fb-8203-ab62113a7ad0"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/0928ffa6-6e49-4132-8d1c-50caf5647811"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/049479ac-38d9-4ddb-b14a-a95ede20c358"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/049479ac-38d9-4ddb-b14a-a95ede20c358/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/5d50edf2-e5e0-4849-bc2c-76f66741eb30"
}
}
}
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=2025-12-19T09%3A51%3A15.598540594&since=2021-01-01T00%3A00' -i -X GET
Python (requests)
import requests
url = "https://app.matatika.com/api/notifications?before=2025-12-19T09%3A51%3A15.598540594&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" : "222d11af-46ca-425c-bb2b-5558e73ae627",
"created" : "2025-12-19T09:51:15.302226",
"lastModified" : "2025-12-19T09:51:15.302226",
"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" : "0928ffa6-6e49-4132-8d1c-50caf5647811",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2025-12-19T09:51:12.349303",
"lastModified" : "2025-12-19T09:51:12.349303",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "049479ac-38d9-4ddb-b14a-a95ede20c358"
},
"dataset" : {
"id" : "049479ac-38d9-4ddb-b14a-a95ede20c358",
"published" : "2025-12-19T09:51:06.477635",
"alias" : "analytics-tables",
"workspaceId" : "5d50edf2-e5e0-4849-bc2c-76f66741eb30",
"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 = 'chmktdq'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2025-12-19T09:51:06.477635",
"score" : 1.0
},
"workspace" : {
"id" : "5d50edf2-e5e0-4849-bc2c-76f66741eb30",
"name" : "Test Workspace [2025-12-19T09:51:06.093839500]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/222d11af-46ca-425c-bb2b-5558e73ae627"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/222d11af-46ca-425c-bb2b-5558e73ae627",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/f342fbb5-e69d-49fb-8203-ab62113a7ad0"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/0928ffa6-6e49-4132-8d1c-50caf5647811"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/049479ac-38d9-4ddb-b14a-a95ede20c358"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/049479ac-38d9-4ddb-b14a-a95ede20c358/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/5d50edf2-e5e0-4849-bc2c-76f66741eb30"
}
}
}, {
"id" : "bd08b94c-2e4a-4162-bc9a-1102f92fd615",
"created" : "2025-12-19T09:51:15.045532",
"lastModified" : "2025-12-19T09:51:15.045533",
"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" : "c20999d5-06b3-427d-9d13-3261e7535b2d",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2025-12-19T09:51:12.239898",
"lastModified" : "2025-12-19T09:51:12.239898",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "049479ac-38d9-4ddb-b14a-a95ede20c358"
},
"dataset" : {
"id" : "049479ac-38d9-4ddb-b14a-a95ede20c358",
"published" : "2025-12-19T09:51:06.477635",
"alias" : "analytics-tables",
"workspaceId" : "5d50edf2-e5e0-4849-bc2c-76f66741eb30",
"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 = 'chmktdq'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2025-12-19T09:51:06.477635",
"score" : 1.0
},
"workspace" : {
"id" : "5d50edf2-e5e0-4849-bc2c-76f66741eb30",
"name" : "Test Workspace [2025-12-19T09:51:06.093839500]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/bd08b94c-2e4a-4162-bc9a-1102f92fd615"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/bd08b94c-2e4a-4162-bc9a-1102f92fd615",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/f342fbb5-e69d-49fb-8203-ab62113a7ad0"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/c20999d5-06b3-427d-9d13-3261e7535b2d"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/049479ac-38d9-4ddb-b14a-a95ede20c358"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/049479ac-38d9-4ddb-b14a-a95ede20c358/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/5d50edf2-e5e0-4849-bc2c-76f66741eb30"
}
}
}, {
"id" : "9a0d5980-b4e6-4f7a-ae2a-0938b5cca512",
"created" : "2025-12-19T09:51:14.836919",
"lastModified" : "2025-12-19T09:51:14.836921",
"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" : "4a1c5a37-53d2-420e-b694-718ffde51537",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2025-12-19T09:51:12.03922",
"lastModified" : "2025-12-19T09:51:12.039221",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "049479ac-38d9-4ddb-b14a-a95ede20c358"
},
"dataset" : {
"id" : "049479ac-38d9-4ddb-b14a-a95ede20c358",
"published" : "2025-12-19T09:51:06.477635",
"alias" : "analytics-tables",
"workspaceId" : "5d50edf2-e5e0-4849-bc2c-76f66741eb30",
"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 = 'chmktdq'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2025-12-19T09:51:06.477635",
"score" : 1.0
},
"workspace" : {
"id" : "5d50edf2-e5e0-4849-bc2c-76f66741eb30",
"name" : "Test Workspace [2025-12-19T09:51:06.093839500]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/9a0d5980-b4e6-4f7a-ae2a-0938b5cca512"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/9a0d5980-b4e6-4f7a-ae2a-0938b5cca512",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/f342fbb5-e69d-49fb-8203-ab62113a7ad0"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/4a1c5a37-53d2-420e-b694-718ffde51537"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/049479ac-38d9-4ddb-b14a-a95ede20c358"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/049479ac-38d9-4ddb-b14a-a95ede20c358/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/5d50edf2-e5e0-4849-bc2c-76f66741eb30"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications?before=2025-12-19T09%3A51%3A15.598540594&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/5d50edf2-e5e0-4849-bc2c-76f66741eb30/notifications?before=2025-12-19T09%3A51%3A15.714873917&since=2021-01-01T00%3A00' -i -X GET
Python (requests)
import requests
url = "https://app.matatika.com/api/workspaces/5d50edf2-e5e0-4849-bc2c-76f66741eb30/notifications?before=2025-12-19T09%3A51%3A15.714873917&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" : "222d11af-46ca-425c-bb2b-5558e73ae627",
"created" : "2025-12-19T09:51:15.302226",
"lastModified" : "2025-12-19T09:51:15.302226",
"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" : "0928ffa6-6e49-4132-8d1c-50caf5647811",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2025-12-19T09:51:12.349303",
"lastModified" : "2025-12-19T09:51:12.349303",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "049479ac-38d9-4ddb-b14a-a95ede20c358"
},
"dataset" : {
"id" : "049479ac-38d9-4ddb-b14a-a95ede20c358",
"published" : "2025-12-19T09:51:06.477635",
"alias" : "analytics-tables",
"workspaceId" : "5d50edf2-e5e0-4849-bc2c-76f66741eb30",
"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 = 'chmktdq'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2025-12-19T09:51:06.477635",
"score" : 1.0
},
"workspace" : {
"id" : "5d50edf2-e5e0-4849-bc2c-76f66741eb30",
"name" : "Test Workspace [2025-12-19T09:51:06.093839500]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/222d11af-46ca-425c-bb2b-5558e73ae627"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/222d11af-46ca-425c-bb2b-5558e73ae627",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/f342fbb5-e69d-49fb-8203-ab62113a7ad0"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/0928ffa6-6e49-4132-8d1c-50caf5647811"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/049479ac-38d9-4ddb-b14a-a95ede20c358"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/049479ac-38d9-4ddb-b14a-a95ede20c358/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/5d50edf2-e5e0-4849-bc2c-76f66741eb30"
}
}
}, {
"id" : "bd08b94c-2e4a-4162-bc9a-1102f92fd615",
"created" : "2025-12-19T09:51:15.045532",
"lastModified" : "2025-12-19T09:51:15.045533",
"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" : "c20999d5-06b3-427d-9d13-3261e7535b2d",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2025-12-19T09:51:12.239898",
"lastModified" : "2025-12-19T09:51:12.239898",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "049479ac-38d9-4ddb-b14a-a95ede20c358"
},
"dataset" : {
"id" : "049479ac-38d9-4ddb-b14a-a95ede20c358",
"published" : "2025-12-19T09:51:06.477635",
"alias" : "analytics-tables",
"workspaceId" : "5d50edf2-e5e0-4849-bc2c-76f66741eb30",
"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 = 'chmktdq'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2025-12-19T09:51:06.477635",
"score" : 1.0
},
"workspace" : {
"id" : "5d50edf2-e5e0-4849-bc2c-76f66741eb30",
"name" : "Test Workspace [2025-12-19T09:51:06.093839500]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/bd08b94c-2e4a-4162-bc9a-1102f92fd615"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/bd08b94c-2e4a-4162-bc9a-1102f92fd615",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/f342fbb5-e69d-49fb-8203-ab62113a7ad0"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/c20999d5-06b3-427d-9d13-3261e7535b2d"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/049479ac-38d9-4ddb-b14a-a95ede20c358"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/049479ac-38d9-4ddb-b14a-a95ede20c358/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/5d50edf2-e5e0-4849-bc2c-76f66741eb30"
}
}
}, {
"id" : "9a0d5980-b4e6-4f7a-ae2a-0938b5cca512",
"created" : "2025-12-19T09:51:14.836919",
"lastModified" : "2025-12-19T09:51:14.836921",
"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" : "4a1c5a37-53d2-420e-b694-718ffde51537",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2025-12-19T09:51:12.03922",
"lastModified" : "2025-12-19T09:51:12.039221",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "049479ac-38d9-4ddb-b14a-a95ede20c358"
},
"dataset" : {
"id" : "049479ac-38d9-4ddb-b14a-a95ede20c358",
"published" : "2025-12-19T09:51:06.477635",
"alias" : "analytics-tables",
"workspaceId" : "5d50edf2-e5e0-4849-bc2c-76f66741eb30",
"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 = 'chmktdq'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2025-12-19T09:51:06.477635",
"score" : 1.0
},
"workspace" : {
"id" : "5d50edf2-e5e0-4849-bc2c-76f66741eb30",
"name" : "Test Workspace [2025-12-19T09:51:06.093839500]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/9a0d5980-b4e6-4f7a-ae2a-0938b5cca512"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/9a0d5980-b4e6-4f7a-ae2a-0938b5cca512",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/f342fbb5-e69d-49fb-8203-ab62113a7ad0"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/4a1c5a37-53d2-420e-b694-718ffde51537"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/049479ac-38d9-4ddb-b14a-a95ede20c358"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/049479ac-38d9-4ddb-b14a-a95ede20c358/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/5d50edf2-e5e0-4849-bc2c-76f66741eb30"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/workspaces/5d50edf2-e5e0-4849-bc2c-76f66741eb30/notifications?before=2025-12-19T09%3A51%3A15.714873917&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/222d11af-46ca-425c-bb2b-5558e73ae627' -i -X GET
Python (requests)
import requests
url = "https://app.matatika.com/api/notifications/222d11af-46ca-425c-bb2b-5558e73ae627"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Notification with HAL links.
{
"id" : "222d11af-46ca-425c-bb2b-5558e73ae627",
"created" : "2025-12-19T09:51:15.302226",
"lastModified" : "2025-12-19T09:51:15.302226",
"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" : "0928ffa6-6e49-4132-8d1c-50caf5647811",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2025-12-19T09:51:12.349303",
"lastModified" : "2025-12-19T09:51:12.349303",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "049479ac-38d9-4ddb-b14a-a95ede20c358"
},
"dataset" : {
"id" : "049479ac-38d9-4ddb-b14a-a95ede20c358",
"published" : "2025-12-19T09:51:06.477635",
"alias" : "analytics-tables",
"workspaceId" : "5d50edf2-e5e0-4849-bc2c-76f66741eb30",
"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 = 'chmktdq'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2025-12-19T09:51:06.477635",
"score" : 1.0
},
"workspace" : {
"id" : "5d50edf2-e5e0-4849-bc2c-76f66741eb30",
"name" : "Test Workspace [2025-12-19T09:51:06.093839500]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/222d11af-46ca-425c-bb2b-5558e73ae627"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/222d11af-46ca-425c-bb2b-5558e73ae627",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/f342fbb5-e69d-49fb-8203-ab62113a7ad0"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/0928ffa6-6e49-4132-8d1c-50caf5647811"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/049479ac-38d9-4ddb-b14a-a95ede20c358"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/049479ac-38d9-4ddb-b14a-a95ede20c358/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/5d50edf2-e5e0-4849-bc2c-76f66741eb30"
}
}
}
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=2025-12-19T09%3A51%3A22.601397' -i -X PUT \
-H 'Content-Type: application/json'
Python (requests)
import requests
url = "https://app.matatika.com/api/notifications?since=2025-12-19T09%3A51%3A22.601397"
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" : "eefe6a0a-cb47-4d58-8d55-06f6af35437b",
"created" : "2025-12-19T09:51:24.656742",
"lastModified" : "2025-12-19T09:51:24.656743",
"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" : "663708b2-bf5a-4b9c-94f0-5cab973c218f",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2025-12-19T09:51:23.749179",
"lastModified" : "2025-12-19T09:51:23.749179",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "049479ac-38d9-4ddb-b14a-a95ede20c358"
},
"dataset" : {
"id" : "049479ac-38d9-4ddb-b14a-a95ede20c358",
"published" : "2025-12-19T09:51:06.477635",
"alias" : "analytics-tables",
"workspaceId" : "5d50edf2-e5e0-4849-bc2c-76f66741eb30",
"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 = 'chmktdq'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2025-12-19T09:51:06.477635",
"score" : 1.0
},
"workspace" : {
"id" : "5d50edf2-e5e0-4849-bc2c-76f66741eb30",
"name" : "Test Workspace [2025-12-19T09:51:06.093839500]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/eefe6a0a-cb47-4d58-8d55-06f6af35437b"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/eefe6a0a-cb47-4d58-8d55-06f6af35437b",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/f342fbb5-e69d-49fb-8203-ab62113a7ad0"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/663708b2-bf5a-4b9c-94f0-5cab973c218f"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/049479ac-38d9-4ddb-b14a-a95ede20c358"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/049479ac-38d9-4ddb-b14a-a95ede20c358/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/5d50edf2-e5e0-4849-bc2c-76f66741eb30"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications?since=2025-12-19T09%3A51%3A22.601397&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/222d11af-46ca-425c-bb2b-5558e73ae627' -i -X DELETE
Python (requests)
import requests
url = "https://app.matatika.com/api/notifications/222d11af-46ca-425c-bb2b-5558e73ae627"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("DELETE", url, headers=headers)
print(response.text.encode('utf8'))
Response
204 No Content
No response body provided.