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" : "3bc78d28-ab81-4dd6-a235-159bbf8ebfc4",
"created" : "2026-06-26T13:09:16.18058",
"lastModified" : "2026-06-26T13:09:16.18058",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"channel" : {
"name" : "no-picture",
"description" : "No picture",
"picture" : "https://s.gravatar.com/avatar/357b18eea0ae8abd799a31e2ca1ad3e5?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsi.png"
},
"datasetComment" : {
"id" : "eb31c410-6682-4866-9e76-5e990b3e9dff",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-06-26T13:09:10.215443",
"lastModified" : "2026-06-26T13:09:10.215444",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "9c6849c5-4c02-4e02-82b3-a5d3486bece0"
},
"dataset" : {
"id" : "9c6849c5-4c02-4e02-82b3-a5d3486bece0",
"published" : "2026-06-26T13:09:04.601325",
"alias" : "analytics-tables",
"workspaceId" : "9534b123-6282-405d-9de7-907b56f39b48",
"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 = 'mhlbiwz'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-06-26T13:09:04.606054",
"score" : 1.0
},
"workspace" : {
"id" : "9534b123-6282-405d-9de7-907b56f39b48",
"name" : "Test Workspace [2026-06-26T13:09:04.249288081]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/3bc78d28-ab81-4dd6-a235-159bbf8ebfc4"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/3bc78d28-ab81-4dd6-a235-159bbf8ebfc4",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/c73309c1-d0c0-4666-8990-7ebe61b24715"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/eb31c410-6682-4866-9e76-5e990b3e9dff"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/9c6849c5-4c02-4e02-82b3-a5d3486bece0"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/9c6849c5-4c02-4e02-82b3-a5d3486bece0/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/9534b123-6282-405d-9de7-907b56f39b48"
}
}
}
Formats
Notification Type
string
| Value | Description |
|---|---|
DATASET_ACTIVITY | Any activity on the dataset |
DATASET_ANOMALY | A detected anomaly 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
GET /api/notifications?all={all}&before={before}&since={since}
Returns all notifications for the authenticated user profile.
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 |
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/notifications?before=2026-06-26T13%3A09%3A16.490853807&since=2021-01-01T00%3A00' -i -X GET
import requests
url = "https://app.matatika.com/api/notifications?before=2026-06-26T13%3A09%3A16.490853807&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" : "3bc78d28-ab81-4dd6-a235-159bbf8ebfc4",
"created" : "2026-06-26T13:09:16.18058",
"lastModified" : "2026-06-26T13:09:16.18058",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"channel" : {
"name" : "no-picture",
"description" : "No picture",
"picture" : "https://s.gravatar.com/avatar/357b18eea0ae8abd799a31e2ca1ad3e5?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsi.png"
},
"datasetComment" : {
"id" : "eb31c410-6682-4866-9e76-5e990b3e9dff",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-06-26T13:09:10.215443",
"lastModified" : "2026-06-26T13:09:10.215444",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "9c6849c5-4c02-4e02-82b3-a5d3486bece0"
},
"dataset" : {
"id" : "9c6849c5-4c02-4e02-82b3-a5d3486bece0",
"published" : "2026-06-26T13:09:04.601325",
"alias" : "analytics-tables",
"workspaceId" : "9534b123-6282-405d-9de7-907b56f39b48",
"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 = 'mhlbiwz'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-06-26T13:09:04.606054",
"score" : 1.0
},
"workspace" : {
"id" : "9534b123-6282-405d-9de7-907b56f39b48",
"name" : "Test Workspace [2026-06-26T13:09:04.249288081]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/3bc78d28-ab81-4dd6-a235-159bbf8ebfc4"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/3bc78d28-ab81-4dd6-a235-159bbf8ebfc4",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/c73309c1-d0c0-4666-8990-7ebe61b24715"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/eb31c410-6682-4866-9e76-5e990b3e9dff"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/9c6849c5-4c02-4e02-82b3-a5d3486bece0"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/9c6849c5-4c02-4e02-82b3-a5d3486bece0/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/9534b123-6282-405d-9de7-907b56f39b48"
}
}
}, {
"id" : "3bdce460-465e-480b-af02-504506992079",
"created" : "2026-06-26T13:09:15.926875",
"lastModified" : "2026-06-26T13:09:15.926876",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"channel" : {
"name" : "no-picture",
"description" : "No picture",
"picture" : "https://s.gravatar.com/avatar/357b18eea0ae8abd799a31e2ca1ad3e5?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsi.png"
},
"datasetComment" : {
"id" : "deabf7a1-bacf-43e9-9c34-b9a5506e6e30",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-06-26T13:09:10.124607",
"lastModified" : "2026-06-26T13:09:10.124607",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "9c6849c5-4c02-4e02-82b3-a5d3486bece0"
},
"dataset" : {
"id" : "9c6849c5-4c02-4e02-82b3-a5d3486bece0",
"published" : "2026-06-26T13:09:04.601325",
"alias" : "analytics-tables",
"workspaceId" : "9534b123-6282-405d-9de7-907b56f39b48",
"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 = 'mhlbiwz'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-06-26T13:09:04.606054",
"score" : 1.0
},
"workspace" : {
"id" : "9534b123-6282-405d-9de7-907b56f39b48",
"name" : "Test Workspace [2026-06-26T13:09:04.249288081]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/3bdce460-465e-480b-af02-504506992079"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/3bdce460-465e-480b-af02-504506992079",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/c73309c1-d0c0-4666-8990-7ebe61b24715"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/deabf7a1-bacf-43e9-9c34-b9a5506e6e30"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/9c6849c5-4c02-4e02-82b3-a5d3486bece0"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/9c6849c5-4c02-4e02-82b3-a5d3486bece0/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/9534b123-6282-405d-9de7-907b56f39b48"
}
}
}, {
"id" : "ecd09763-b1ae-436f-8078-3e5422381643",
"created" : "2026-06-26T13:09:15.809966",
"lastModified" : "2026-06-26T13:09:15.809967",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"channel" : {
"name" : "no-picture",
"description" : "No picture",
"picture" : "https://s.gravatar.com/avatar/357b18eea0ae8abd799a31e2ca1ad3e5?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsi.png"
},
"datasetComment" : {
"id" : "27076e8f-27cb-401f-890b-90ce67c1173a",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-06-26T13:09:10.034834",
"lastModified" : "2026-06-26T13:09:10.034834",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "9c6849c5-4c02-4e02-82b3-a5d3486bece0"
},
"dataset" : {
"id" : "9c6849c5-4c02-4e02-82b3-a5d3486bece0",
"published" : "2026-06-26T13:09:04.601325",
"alias" : "analytics-tables",
"workspaceId" : "9534b123-6282-405d-9de7-907b56f39b48",
"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 = 'mhlbiwz'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-06-26T13:09:04.606054",
"score" : 1.0
},
"workspace" : {
"id" : "9534b123-6282-405d-9de7-907b56f39b48",
"name" : "Test Workspace [2026-06-26T13:09:04.249288081]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/ecd09763-b1ae-436f-8078-3e5422381643"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/ecd09763-b1ae-436f-8078-3e5422381643",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/c73309c1-d0c0-4666-8990-7ebe61b24715"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/27076e8f-27cb-401f-890b-90ce67c1173a"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/9c6849c5-4c02-4e02-82b3-a5d3486bece0"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/9c6849c5-4c02-4e02-82b3-a5d3486bece0/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/9534b123-6282-405d-9de7-907b56f39b48"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications?before=2026-06-26T13%3A09%3A16.490853807&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
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 |
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/workspaces/9534b123-6282-405d-9de7-907b56f39b48/notifications?before=2026-06-26T13%3A09%3A16.563306689&since=2021-01-01T00%3A00' -i -X GET
import requests
url = "https://app.matatika.com/api/workspaces/9534b123-6282-405d-9de7-907b56f39b48/notifications?before=2026-06-26T13%3A09%3A16.563306689&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" : "3bc78d28-ab81-4dd6-a235-159bbf8ebfc4",
"created" : "2026-06-26T13:09:16.18058",
"lastModified" : "2026-06-26T13:09:16.18058",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"channel" : {
"name" : "no-picture",
"description" : "No picture",
"picture" : "https://s.gravatar.com/avatar/357b18eea0ae8abd799a31e2ca1ad3e5?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsi.png"
},
"datasetComment" : {
"id" : "eb31c410-6682-4866-9e76-5e990b3e9dff",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-06-26T13:09:10.215443",
"lastModified" : "2026-06-26T13:09:10.215444",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "9c6849c5-4c02-4e02-82b3-a5d3486bece0"
},
"dataset" : {
"id" : "9c6849c5-4c02-4e02-82b3-a5d3486bece0",
"published" : "2026-06-26T13:09:04.601325",
"alias" : "analytics-tables",
"workspaceId" : "9534b123-6282-405d-9de7-907b56f39b48",
"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 = 'mhlbiwz'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-06-26T13:09:04.606054",
"score" : 1.0
},
"workspace" : {
"id" : "9534b123-6282-405d-9de7-907b56f39b48",
"name" : "Test Workspace [2026-06-26T13:09:04.249288081]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/3bc78d28-ab81-4dd6-a235-159bbf8ebfc4"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/3bc78d28-ab81-4dd6-a235-159bbf8ebfc4",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/c73309c1-d0c0-4666-8990-7ebe61b24715"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/eb31c410-6682-4866-9e76-5e990b3e9dff"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/9c6849c5-4c02-4e02-82b3-a5d3486bece0"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/9c6849c5-4c02-4e02-82b3-a5d3486bece0/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/9534b123-6282-405d-9de7-907b56f39b48"
}
}
}, {
"id" : "3bdce460-465e-480b-af02-504506992079",
"created" : "2026-06-26T13:09:15.926875",
"lastModified" : "2026-06-26T13:09:15.926876",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"channel" : {
"name" : "no-picture",
"description" : "No picture",
"picture" : "https://s.gravatar.com/avatar/357b18eea0ae8abd799a31e2ca1ad3e5?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsi.png"
},
"datasetComment" : {
"id" : "deabf7a1-bacf-43e9-9c34-b9a5506e6e30",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-06-26T13:09:10.124607",
"lastModified" : "2026-06-26T13:09:10.124607",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "9c6849c5-4c02-4e02-82b3-a5d3486bece0"
},
"dataset" : {
"id" : "9c6849c5-4c02-4e02-82b3-a5d3486bece0",
"published" : "2026-06-26T13:09:04.601325",
"alias" : "analytics-tables",
"workspaceId" : "9534b123-6282-405d-9de7-907b56f39b48",
"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 = 'mhlbiwz'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-06-26T13:09:04.606054",
"score" : 1.0
},
"workspace" : {
"id" : "9534b123-6282-405d-9de7-907b56f39b48",
"name" : "Test Workspace [2026-06-26T13:09:04.249288081]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/3bdce460-465e-480b-af02-504506992079"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/3bdce460-465e-480b-af02-504506992079",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/c73309c1-d0c0-4666-8990-7ebe61b24715"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/deabf7a1-bacf-43e9-9c34-b9a5506e6e30"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/9c6849c5-4c02-4e02-82b3-a5d3486bece0"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/9c6849c5-4c02-4e02-82b3-a5d3486bece0/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/9534b123-6282-405d-9de7-907b56f39b48"
}
}
}, {
"id" : "ecd09763-b1ae-436f-8078-3e5422381643",
"created" : "2026-06-26T13:09:15.809966",
"lastModified" : "2026-06-26T13:09:15.809967",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"channel" : {
"name" : "no-picture",
"description" : "No picture",
"picture" : "https://s.gravatar.com/avatar/357b18eea0ae8abd799a31e2ca1ad3e5?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsi.png"
},
"datasetComment" : {
"id" : "27076e8f-27cb-401f-890b-90ce67c1173a",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-06-26T13:09:10.034834",
"lastModified" : "2026-06-26T13:09:10.034834",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "9c6849c5-4c02-4e02-82b3-a5d3486bece0"
},
"dataset" : {
"id" : "9c6849c5-4c02-4e02-82b3-a5d3486bece0",
"published" : "2026-06-26T13:09:04.601325",
"alias" : "analytics-tables",
"workspaceId" : "9534b123-6282-405d-9de7-907b56f39b48",
"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 = 'mhlbiwz'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-06-26T13:09:04.606054",
"score" : 1.0
},
"workspace" : {
"id" : "9534b123-6282-405d-9de7-907b56f39b48",
"name" : "Test Workspace [2026-06-26T13:09:04.249288081]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/ecd09763-b1ae-436f-8078-3e5422381643"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/ecd09763-b1ae-436f-8078-3e5422381643",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/c73309c1-d0c0-4666-8990-7ebe61b24715"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/27076e8f-27cb-401f-890b-90ce67c1173a"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/9c6849c5-4c02-4e02-82b3-a5d3486bece0"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/9c6849c5-4c02-4e02-82b3-a5d3486bece0/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/9534b123-6282-405d-9de7-907b56f39b48"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/workspaces/9534b123-6282-405d-9de7-907b56f39b48/notifications?before=2026-06-26T13%3A09%3A16.563306689&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
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/notifications/3bc78d28-ab81-4dd6-a235-159bbf8ebfc4' -i -X GET
import requests
url = "https://app.matatika.com/api/notifications/3bc78d28-ab81-4dd6-a235-159bbf8ebfc4"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Notification with HAL links.
{
"id" : "3bc78d28-ab81-4dd6-a235-159bbf8ebfc4",
"created" : "2026-06-26T13:09:16.18058",
"lastModified" : "2026-06-26T13:09:16.18058",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"channel" : {
"name" : "no-picture",
"description" : "No picture",
"picture" : "https://s.gravatar.com/avatar/357b18eea0ae8abd799a31e2ca1ad3e5?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsi.png"
},
"datasetComment" : {
"id" : "eb31c410-6682-4866-9e76-5e990b3e9dff",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-06-26T13:09:10.215443",
"lastModified" : "2026-06-26T13:09:10.215444",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "9c6849c5-4c02-4e02-82b3-a5d3486bece0"
},
"dataset" : {
"id" : "9c6849c5-4c02-4e02-82b3-a5d3486bece0",
"published" : "2026-06-26T13:09:04.601325",
"alias" : "analytics-tables",
"workspaceId" : "9534b123-6282-405d-9de7-907b56f39b48",
"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 = 'mhlbiwz'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-06-26T13:09:04.606054",
"score" : 1.0
},
"workspace" : {
"id" : "9534b123-6282-405d-9de7-907b56f39b48",
"name" : "Test Workspace [2026-06-26T13:09:04.249288081]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/3bc78d28-ab81-4dd6-a235-159bbf8ebfc4"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/3bc78d28-ab81-4dd6-a235-159bbf8ebfc4",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/c73309c1-d0c0-4666-8990-7ebe61b24715"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/eb31c410-6682-4866-9e76-5e990b3e9dff"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/9c6849c5-4c02-4e02-82b3-a5d3486bece0"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/9c6849c5-4c02-4e02-82b3-a5d3486bece0/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/9534b123-6282-405d-9de7-907b56f39b48"
}
}
}
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.
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 |
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/notifications?since=2026-06-26T13%3A09%3A18.205856' -i -X PUT \
-H 'Content-Type: application/json'
import requests
url = "https://app.matatika.com/api/notifications?since=2026-06-26T13%3A09%3A18.205856"
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" : "218afaa9-3c49-451f-9ee4-81ec1ed66ef3",
"created" : "2026-06-26T13:09:19.483875",
"lastModified" : "2026-06-26T13:09:19.483875",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"channel" : {
"name" : "no-picture",
"description" : "No picture",
"picture" : "https://s.gravatar.com/avatar/357b18eea0ae8abd799a31e2ca1ad3e5?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fsi.png"
},
"datasetComment" : {
"id" : "a3ab9bdc-9454-452b-8bb7-7fb87418e2dc",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-06-26T13:09:18.992062",
"lastModified" : "2026-06-26T13:09:18.992062",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "9c6849c5-4c02-4e02-82b3-a5d3486bece0"
},
"dataset" : {
"id" : "9c6849c5-4c02-4e02-82b3-a5d3486bece0",
"published" : "2026-06-26T13:09:04.601325",
"alias" : "analytics-tables",
"workspaceId" : "9534b123-6282-405d-9de7-907b56f39b48",
"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 = 'mhlbiwz'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-06-26T13:09:04.606054",
"score" : 1.0
},
"workspace" : {
"id" : "9534b123-6282-405d-9de7-907b56f39b48",
"name" : "Test Workspace [2026-06-26T13:09:04.249288081]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/218afaa9-3c49-451f-9ee4-81ec1ed66ef3"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/218afaa9-3c49-451f-9ee4-81ec1ed66ef3",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/c73309c1-d0c0-4666-8990-7ebe61b24715"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/a3ab9bdc-9454-452b-8bb7-7fb87418e2dc"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/9c6849c5-4c02-4e02-82b3-a5d3486bece0"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/9c6849c5-4c02-4e02-82b3-a5d3486bece0/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/9534b123-6282-405d-9de7-907b56f39b48"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications?since=2026-06-26T13%3A09%3A18.205856&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
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/notifications/3bc78d28-ab81-4dd6-a235-159bbf8ebfc4' -i -X DELETE
import requests
url = "https://app.matatika.com/api/notifications/3bc78d28-ab81-4dd6-a235-159bbf8ebfc4"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("DELETE", url, headers=headers)
print(response.text.encode('utf8'))
Response
204 No Content
No response body provided.