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" : "d280d9b9-842e-4ecd-b091-b42a74f04d7d",
"created" : "2026-01-11T18:52:46.564159",
"lastModified" : "2026-01-11T18:52:46.564159",
"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" : "668af3ed-b411-4796-bf12-60c1d5a8a7c4",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-01-11T18:52:44.943381",
"lastModified" : "2026-01-11T18:52:44.943381",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "5c841893-8261-44b6-be9b-d97882826945"
},
"dataset" : {
"id" : "5c841893-8261-44b6-be9b-d97882826945",
"published" : "2026-01-11T18:52:39.075862",
"alias" : "analytics-tables",
"workspaceId" : "ae50b394-9862-418b-af71-a39a97f47839",
"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 = 'elejezo'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-01-11T18:52:39.075861",
"score" : 1.0
},
"workspace" : {
"id" : "ae50b394-9862-418b-af71-a39a97f47839",
"name" : "Test Workspace [2026-01-11T18:52:38.716716275]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/d280d9b9-842e-4ecd-b091-b42a74f04d7d"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/d280d9b9-842e-4ecd-b091-b42a74f04d7d",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/4d02caee-1e17-4fb0-9c5e-4b456129f2e5"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/668af3ed-b411-4796-bf12-60c1d5a8a7c4"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/5c841893-8261-44b6-be9b-d97882826945"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/5c841893-8261-44b6-be9b-d97882826945/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/ae50b394-9862-418b-af71-a39a97f47839"
}
}
}
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-01-11T18%3A52%3A47.088079501&since=2021-01-01T00%3A00' -i -X GET
Python (requests)
import requests
url = "https://app.matatika.com/api/notifications?before=2026-01-11T18%3A52%3A47.088079501&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" : "d280d9b9-842e-4ecd-b091-b42a74f04d7d",
"created" : "2026-01-11T18:52:46.564159",
"lastModified" : "2026-01-11T18:52:46.564159",
"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" : "668af3ed-b411-4796-bf12-60c1d5a8a7c4",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-01-11T18:52:44.943381",
"lastModified" : "2026-01-11T18:52:44.943381",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "5c841893-8261-44b6-be9b-d97882826945"
},
"dataset" : {
"id" : "5c841893-8261-44b6-be9b-d97882826945",
"published" : "2026-01-11T18:52:39.075862",
"alias" : "analytics-tables",
"workspaceId" : "ae50b394-9862-418b-af71-a39a97f47839",
"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 = 'elejezo'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-01-11T18:52:39.075861",
"score" : 1.0
},
"workspace" : {
"id" : "ae50b394-9862-418b-af71-a39a97f47839",
"name" : "Test Workspace [2026-01-11T18:52:38.716716275]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/d280d9b9-842e-4ecd-b091-b42a74f04d7d"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/d280d9b9-842e-4ecd-b091-b42a74f04d7d",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/4d02caee-1e17-4fb0-9c5e-4b456129f2e5"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/668af3ed-b411-4796-bf12-60c1d5a8a7c4"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/5c841893-8261-44b6-be9b-d97882826945"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/5c841893-8261-44b6-be9b-d97882826945/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/ae50b394-9862-418b-af71-a39a97f47839"
}
}
}, {
"id" : "a1f4d55c-66c2-451f-a54f-75a07c875998",
"created" : "2026-01-11T18:52:46.471461",
"lastModified" : "2026-01-11T18:52:46.471462",
"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" : "c5f9298b-2124-4455-83a3-6e943a7daa9f",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-01-11T18:52:44.815011",
"lastModified" : "2026-01-11T18:52:44.815011",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "5c841893-8261-44b6-be9b-d97882826945"
},
"dataset" : {
"id" : "5c841893-8261-44b6-be9b-d97882826945",
"published" : "2026-01-11T18:52:39.075862",
"alias" : "analytics-tables",
"workspaceId" : "ae50b394-9862-418b-af71-a39a97f47839",
"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 = 'elejezo'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-01-11T18:52:39.075861",
"score" : 1.0
},
"workspace" : {
"id" : "ae50b394-9862-418b-af71-a39a97f47839",
"name" : "Test Workspace [2026-01-11T18:52:38.716716275]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/a1f4d55c-66c2-451f-a54f-75a07c875998"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/a1f4d55c-66c2-451f-a54f-75a07c875998",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/4d02caee-1e17-4fb0-9c5e-4b456129f2e5"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/c5f9298b-2124-4455-83a3-6e943a7daa9f"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/5c841893-8261-44b6-be9b-d97882826945"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/5c841893-8261-44b6-be9b-d97882826945/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/ae50b394-9862-418b-af71-a39a97f47839"
}
}
}, {
"id" : "eab189ec-ace0-4628-a7dc-55733b3b4c50",
"created" : "2026-01-11T18:52:46.145838",
"lastModified" : "2026-01-11T18:52:46.145839",
"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" : "0889fcc7-1a57-4eab-b1e2-37540a6c8de7",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-01-11T18:52:44.66184",
"lastModified" : "2026-01-11T18:52:44.66184",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "5c841893-8261-44b6-be9b-d97882826945"
},
"dataset" : {
"id" : "5c841893-8261-44b6-be9b-d97882826945",
"published" : "2026-01-11T18:52:39.075862",
"alias" : "analytics-tables",
"workspaceId" : "ae50b394-9862-418b-af71-a39a97f47839",
"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 = 'elejezo'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-01-11T18:52:39.075861",
"score" : 1.0
},
"workspace" : {
"id" : "ae50b394-9862-418b-af71-a39a97f47839",
"name" : "Test Workspace [2026-01-11T18:52:38.716716275]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/eab189ec-ace0-4628-a7dc-55733b3b4c50"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/eab189ec-ace0-4628-a7dc-55733b3b4c50",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/4d02caee-1e17-4fb0-9c5e-4b456129f2e5"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/0889fcc7-1a57-4eab-b1e2-37540a6c8de7"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/5c841893-8261-44b6-be9b-d97882826945"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/5c841893-8261-44b6-be9b-d97882826945/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/ae50b394-9862-418b-af71-a39a97f47839"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications?before=2026-01-11T18%3A52%3A47.088079501&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/ae50b394-9862-418b-af71-a39a97f47839/notifications?before=2026-01-11T18%3A52%3A47.200123653&since=2021-01-01T00%3A00' -i -X GET
Python (requests)
import requests
url = "https://app.matatika.com/api/workspaces/ae50b394-9862-418b-af71-a39a97f47839/notifications?before=2026-01-11T18%3A52%3A47.200123653&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" : "d280d9b9-842e-4ecd-b091-b42a74f04d7d",
"created" : "2026-01-11T18:52:46.564159",
"lastModified" : "2026-01-11T18:52:46.564159",
"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" : "668af3ed-b411-4796-bf12-60c1d5a8a7c4",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-01-11T18:52:44.943381",
"lastModified" : "2026-01-11T18:52:44.943381",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "5c841893-8261-44b6-be9b-d97882826945"
},
"dataset" : {
"id" : "5c841893-8261-44b6-be9b-d97882826945",
"published" : "2026-01-11T18:52:39.075862",
"alias" : "analytics-tables",
"workspaceId" : "ae50b394-9862-418b-af71-a39a97f47839",
"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 = 'elejezo'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-01-11T18:52:39.075861",
"score" : 1.0
},
"workspace" : {
"id" : "ae50b394-9862-418b-af71-a39a97f47839",
"name" : "Test Workspace [2026-01-11T18:52:38.716716275]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/d280d9b9-842e-4ecd-b091-b42a74f04d7d"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/d280d9b9-842e-4ecd-b091-b42a74f04d7d",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/4d02caee-1e17-4fb0-9c5e-4b456129f2e5"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/668af3ed-b411-4796-bf12-60c1d5a8a7c4"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/5c841893-8261-44b6-be9b-d97882826945"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/5c841893-8261-44b6-be9b-d97882826945/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/ae50b394-9862-418b-af71-a39a97f47839"
}
}
}, {
"id" : "a1f4d55c-66c2-451f-a54f-75a07c875998",
"created" : "2026-01-11T18:52:46.471461",
"lastModified" : "2026-01-11T18:52:46.471462",
"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" : "c5f9298b-2124-4455-83a3-6e943a7daa9f",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-01-11T18:52:44.815011",
"lastModified" : "2026-01-11T18:52:44.815011",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "5c841893-8261-44b6-be9b-d97882826945"
},
"dataset" : {
"id" : "5c841893-8261-44b6-be9b-d97882826945",
"published" : "2026-01-11T18:52:39.075862",
"alias" : "analytics-tables",
"workspaceId" : "ae50b394-9862-418b-af71-a39a97f47839",
"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 = 'elejezo'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-01-11T18:52:39.075861",
"score" : 1.0
},
"workspace" : {
"id" : "ae50b394-9862-418b-af71-a39a97f47839",
"name" : "Test Workspace [2026-01-11T18:52:38.716716275]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/a1f4d55c-66c2-451f-a54f-75a07c875998"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/a1f4d55c-66c2-451f-a54f-75a07c875998",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/4d02caee-1e17-4fb0-9c5e-4b456129f2e5"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/c5f9298b-2124-4455-83a3-6e943a7daa9f"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/5c841893-8261-44b6-be9b-d97882826945"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/5c841893-8261-44b6-be9b-d97882826945/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/ae50b394-9862-418b-af71-a39a97f47839"
}
}
}, {
"id" : "eab189ec-ace0-4628-a7dc-55733b3b4c50",
"created" : "2026-01-11T18:52:46.145838",
"lastModified" : "2026-01-11T18:52:46.145839",
"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" : "0889fcc7-1a57-4eab-b1e2-37540a6c8de7",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-01-11T18:52:44.66184",
"lastModified" : "2026-01-11T18:52:44.66184",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "5c841893-8261-44b6-be9b-d97882826945"
},
"dataset" : {
"id" : "5c841893-8261-44b6-be9b-d97882826945",
"published" : "2026-01-11T18:52:39.075862",
"alias" : "analytics-tables",
"workspaceId" : "ae50b394-9862-418b-af71-a39a97f47839",
"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 = 'elejezo'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-01-11T18:52:39.075861",
"score" : 1.0
},
"workspace" : {
"id" : "ae50b394-9862-418b-af71-a39a97f47839",
"name" : "Test Workspace [2026-01-11T18:52:38.716716275]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/eab189ec-ace0-4628-a7dc-55733b3b4c50"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/eab189ec-ace0-4628-a7dc-55733b3b4c50",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/4d02caee-1e17-4fb0-9c5e-4b456129f2e5"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/0889fcc7-1a57-4eab-b1e2-37540a6c8de7"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/5c841893-8261-44b6-be9b-d97882826945"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/5c841893-8261-44b6-be9b-d97882826945/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/ae50b394-9862-418b-af71-a39a97f47839"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/workspaces/ae50b394-9862-418b-af71-a39a97f47839/notifications?before=2026-01-11T18%3A52%3A47.200123653&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/d280d9b9-842e-4ecd-b091-b42a74f04d7d' -i -X GET
Python (requests)
import requests
url = "https://app.matatika.com/api/notifications/d280d9b9-842e-4ecd-b091-b42a74f04d7d"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Notification with HAL links.
{
"id" : "d280d9b9-842e-4ecd-b091-b42a74f04d7d",
"created" : "2026-01-11T18:52:46.564159",
"lastModified" : "2026-01-11T18:52:46.564159",
"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" : "668af3ed-b411-4796-bf12-60c1d5a8a7c4",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-01-11T18:52:44.943381",
"lastModified" : "2026-01-11T18:52:44.943381",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "5c841893-8261-44b6-be9b-d97882826945"
},
"dataset" : {
"id" : "5c841893-8261-44b6-be9b-d97882826945",
"published" : "2026-01-11T18:52:39.075862",
"alias" : "analytics-tables",
"workspaceId" : "ae50b394-9862-418b-af71-a39a97f47839",
"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 = 'elejezo'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-01-11T18:52:39.075861",
"score" : 1.0
},
"workspace" : {
"id" : "ae50b394-9862-418b-af71-a39a97f47839",
"name" : "Test Workspace [2026-01-11T18:52:38.716716275]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/d280d9b9-842e-4ecd-b091-b42a74f04d7d"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/d280d9b9-842e-4ecd-b091-b42a74f04d7d",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/4d02caee-1e17-4fb0-9c5e-4b456129f2e5"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/668af3ed-b411-4796-bf12-60c1d5a8a7c4"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/5c841893-8261-44b6-be9b-d97882826945"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/5c841893-8261-44b6-be9b-d97882826945/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/ae50b394-9862-418b-af71-a39a97f47839"
}
}
}
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-01-11T18%3A52%3A51.089296' -i -X PUT \
-H 'Content-Type: application/json'
Python (requests)
import requests
url = "https://app.matatika.com/api/notifications?since=2026-01-11T18%3A52%3A51.089296"
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" : "10c460ad-3412-4279-8de1-041245474e72",
"created" : "2026-01-11T18:52:52.161588",
"lastModified" : "2026-01-11T18:52:52.161589",
"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" : "5c123a09-08cb-4451-b706-d2e2bc8d8182",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-01-11T18:52:52.002684",
"lastModified" : "2026-01-11T18:52:52.002684",
"from" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "5c841893-8261-44b6-be9b-d97882826945"
},
"dataset" : {
"id" : "5c841893-8261-44b6-be9b-d97882826945",
"published" : "2026-01-11T18:52:39.075862",
"alias" : "analytics-tables",
"workspaceId" : "ae50b394-9862-418b-af71-a39a97f47839",
"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 = 'elejezo'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-01-11T18:52:39.075861",
"score" : 1.0
},
"workspace" : {
"id" : "ae50b394-9862-418b-af71-a39a97f47839",
"name" : "Test Workspace [2026-01-11T18:52:38.716716275]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/10c460ad-3412-4279-8de1-041245474e72"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/10c460ad-3412-4279-8de1-041245474e72",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/4d02caee-1e17-4fb0-9c5e-4b456129f2e5"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/5c123a09-08cb-4451-b706-d2e2bc8d8182"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/5c841893-8261-44b6-be9b-d97882826945"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/5c841893-8261-44b6-be9b-d97882826945/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/ae50b394-9862-418b-af71-a39a97f47839"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications?since=2026-01-11T18%3A52%3A51.089296&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/d280d9b9-842e-4ecd-b091-b42a74f04d7d' -i -X DELETE
Python (requests)
import requests
url = "https://app.matatika.com/api/notifications/d280d9b9-842e-4ecd-b091-b42a74f04d7d"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("DELETE", url, headers=headers)
print(response.text.encode('utf8'))
Response
204 No Content
No response body provided.