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" : "bb92fa73-1177-4f5c-9786-29c1608ddd84",
"created" : "2026-07-15T11:40:00.659147",
"lastModified" : "2026-07-15T11:40:00.659147",
"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" : "604979df-c7f7-442a-8b62-8de19769867c",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-07-15T11:39:57.149628",
"lastModified" : "2026-07-15T11:39:57.149628",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "93f2df1b-81e1-4988-89d4-e3f07ee0b269"
},
"dataset" : {
"id" : "93f2df1b-81e1-4988-89d4-e3f07ee0b269",
"published" : "2026-07-15T11:39:51.565575",
"alias" : "analytics-tables",
"workspaceId" : "bca706df-98da-4901-b22e-336dbb768643",
"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 = 'qubftlg'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-07-15T11:39:51.569342",
"score" : 1.0
},
"workspace" : {
"id" : "bca706df-98da-4901-b22e-336dbb768643",
"name" : "Test Workspace [2026-07-15T11:39:51.200250259]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/bb92fa73-1177-4f5c-9786-29c1608ddd84"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/bb92fa73-1177-4f5c-9786-29c1608ddd84",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/aa78e9fb-d24e-44c7-8e8b-6d4336a29ec2"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/604979df-c7f7-442a-8b62-8de19769867c"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/93f2df1b-81e1-4988-89d4-e3f07ee0b269"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/93f2df1b-81e1-4988-89d4-e3f07ee0b269/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/bca706df-98da-4901-b22e-336dbb768643"
}
}
}
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-07-15T11%3A40%3A01.357904182&since=2021-01-01T00%3A00' -i -X GET
import requests
url = "https://app.matatika.com/api/notifications?before=2026-07-15T11%3A40%3A01.357904182&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" : "bb92fa73-1177-4f5c-9786-29c1608ddd84",
"created" : "2026-07-15T11:40:00.659147",
"lastModified" : "2026-07-15T11:40:00.659147",
"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" : "604979df-c7f7-442a-8b62-8de19769867c",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-07-15T11:39:57.149628",
"lastModified" : "2026-07-15T11:39:57.149628",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "93f2df1b-81e1-4988-89d4-e3f07ee0b269"
},
"dataset" : {
"id" : "93f2df1b-81e1-4988-89d4-e3f07ee0b269",
"published" : "2026-07-15T11:39:51.565575",
"alias" : "analytics-tables",
"workspaceId" : "bca706df-98da-4901-b22e-336dbb768643",
"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 = 'qubftlg'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-07-15T11:39:51.569342",
"score" : 1.0
},
"workspace" : {
"id" : "bca706df-98da-4901-b22e-336dbb768643",
"name" : "Test Workspace [2026-07-15T11:39:51.200250259]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/bb92fa73-1177-4f5c-9786-29c1608ddd84"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/bb92fa73-1177-4f5c-9786-29c1608ddd84",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/aa78e9fb-d24e-44c7-8e8b-6d4336a29ec2"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/604979df-c7f7-442a-8b62-8de19769867c"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/93f2df1b-81e1-4988-89d4-e3f07ee0b269"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/93f2df1b-81e1-4988-89d4-e3f07ee0b269/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/bca706df-98da-4901-b22e-336dbb768643"
}
}
}, {
"id" : "8681043c-47bc-445d-a8fb-7fbc9f59595f",
"created" : "2026-07-15T11:40:00.587816",
"lastModified" : "2026-07-15T11:40:00.587817",
"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" : "6864c315-87e8-4117-b396-eebe76e646f4",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-07-15T11:39:57.057385",
"lastModified" : "2026-07-15T11:39:57.057386",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "93f2df1b-81e1-4988-89d4-e3f07ee0b269"
},
"dataset" : {
"id" : "93f2df1b-81e1-4988-89d4-e3f07ee0b269",
"published" : "2026-07-15T11:39:51.565575",
"alias" : "analytics-tables",
"workspaceId" : "bca706df-98da-4901-b22e-336dbb768643",
"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 = 'qubftlg'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-07-15T11:39:51.569342",
"score" : 1.0
},
"workspace" : {
"id" : "bca706df-98da-4901-b22e-336dbb768643",
"name" : "Test Workspace [2026-07-15T11:39:51.200250259]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/8681043c-47bc-445d-a8fb-7fbc9f59595f"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/8681043c-47bc-445d-a8fb-7fbc9f59595f",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/aa78e9fb-d24e-44c7-8e8b-6d4336a29ec2"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/6864c315-87e8-4117-b396-eebe76e646f4"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/93f2df1b-81e1-4988-89d4-e3f07ee0b269"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/93f2df1b-81e1-4988-89d4-e3f07ee0b269/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/bca706df-98da-4901-b22e-336dbb768643"
}
}
}, {
"id" : "5e5adac1-8b7b-4f94-99d5-04c10ee3fdc1",
"created" : "2026-07-15T11:40:00.459393",
"lastModified" : "2026-07-15T11:40:00.459394",
"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" : "ca2283db-81f8-4995-a6fd-9fce0428fb96",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-07-15T11:39:56.968217",
"lastModified" : "2026-07-15T11:39:56.968217",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "93f2df1b-81e1-4988-89d4-e3f07ee0b269"
},
"dataset" : {
"id" : "93f2df1b-81e1-4988-89d4-e3f07ee0b269",
"published" : "2026-07-15T11:39:51.565575",
"alias" : "analytics-tables",
"workspaceId" : "bca706df-98da-4901-b22e-336dbb768643",
"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 = 'qubftlg'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-07-15T11:39:51.569342",
"score" : 1.0
},
"workspace" : {
"id" : "bca706df-98da-4901-b22e-336dbb768643",
"name" : "Test Workspace [2026-07-15T11:39:51.200250259]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/5e5adac1-8b7b-4f94-99d5-04c10ee3fdc1"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/5e5adac1-8b7b-4f94-99d5-04c10ee3fdc1",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/aa78e9fb-d24e-44c7-8e8b-6d4336a29ec2"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/ca2283db-81f8-4995-a6fd-9fce0428fb96"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/93f2df1b-81e1-4988-89d4-e3f07ee0b269"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/93f2df1b-81e1-4988-89d4-e3f07ee0b269/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/bca706df-98da-4901-b22e-336dbb768643"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications?before=2026-07-15T11%3A40%3A01.357904182&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/bca706df-98da-4901-b22e-336dbb768643/notifications?before=2026-07-15T11%3A40%3A01.445177956&since=2021-01-01T00%3A00' -i -X GET
import requests
url = "https://app.matatika.com/api/workspaces/bca706df-98da-4901-b22e-336dbb768643/notifications?before=2026-07-15T11%3A40%3A01.445177956&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" : "bb92fa73-1177-4f5c-9786-29c1608ddd84",
"created" : "2026-07-15T11:40:00.659147",
"lastModified" : "2026-07-15T11:40:00.659147",
"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" : "604979df-c7f7-442a-8b62-8de19769867c",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-07-15T11:39:57.149628",
"lastModified" : "2026-07-15T11:39:57.149628",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "93f2df1b-81e1-4988-89d4-e3f07ee0b269"
},
"dataset" : {
"id" : "93f2df1b-81e1-4988-89d4-e3f07ee0b269",
"published" : "2026-07-15T11:39:51.565575",
"alias" : "analytics-tables",
"workspaceId" : "bca706df-98da-4901-b22e-336dbb768643",
"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 = 'qubftlg'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-07-15T11:39:51.569342",
"score" : 1.0
},
"workspace" : {
"id" : "bca706df-98da-4901-b22e-336dbb768643",
"name" : "Test Workspace [2026-07-15T11:39:51.200250259]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/bb92fa73-1177-4f5c-9786-29c1608ddd84"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/bb92fa73-1177-4f5c-9786-29c1608ddd84",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/aa78e9fb-d24e-44c7-8e8b-6d4336a29ec2"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/604979df-c7f7-442a-8b62-8de19769867c"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/93f2df1b-81e1-4988-89d4-e3f07ee0b269"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/93f2df1b-81e1-4988-89d4-e3f07ee0b269/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/bca706df-98da-4901-b22e-336dbb768643"
}
}
}, {
"id" : "8681043c-47bc-445d-a8fb-7fbc9f59595f",
"created" : "2026-07-15T11:40:00.587816",
"lastModified" : "2026-07-15T11:40:00.587817",
"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" : "6864c315-87e8-4117-b396-eebe76e646f4",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-07-15T11:39:57.057385",
"lastModified" : "2026-07-15T11:39:57.057386",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "93f2df1b-81e1-4988-89d4-e3f07ee0b269"
},
"dataset" : {
"id" : "93f2df1b-81e1-4988-89d4-e3f07ee0b269",
"published" : "2026-07-15T11:39:51.565575",
"alias" : "analytics-tables",
"workspaceId" : "bca706df-98da-4901-b22e-336dbb768643",
"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 = 'qubftlg'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-07-15T11:39:51.569342",
"score" : 1.0
},
"workspace" : {
"id" : "bca706df-98da-4901-b22e-336dbb768643",
"name" : "Test Workspace [2026-07-15T11:39:51.200250259]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/8681043c-47bc-445d-a8fb-7fbc9f59595f"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/8681043c-47bc-445d-a8fb-7fbc9f59595f",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/aa78e9fb-d24e-44c7-8e8b-6d4336a29ec2"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/6864c315-87e8-4117-b396-eebe76e646f4"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/93f2df1b-81e1-4988-89d4-e3f07ee0b269"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/93f2df1b-81e1-4988-89d4-e3f07ee0b269/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/bca706df-98da-4901-b22e-336dbb768643"
}
}
}, {
"id" : "5e5adac1-8b7b-4f94-99d5-04c10ee3fdc1",
"created" : "2026-07-15T11:40:00.459393",
"lastModified" : "2026-07-15T11:40:00.459394",
"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" : "ca2283db-81f8-4995-a6fd-9fce0428fb96",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-07-15T11:39:56.968217",
"lastModified" : "2026-07-15T11:39:56.968217",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "93f2df1b-81e1-4988-89d4-e3f07ee0b269"
},
"dataset" : {
"id" : "93f2df1b-81e1-4988-89d4-e3f07ee0b269",
"published" : "2026-07-15T11:39:51.565575",
"alias" : "analytics-tables",
"workspaceId" : "bca706df-98da-4901-b22e-336dbb768643",
"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 = 'qubftlg'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-07-15T11:39:51.569342",
"score" : 1.0
},
"workspace" : {
"id" : "bca706df-98da-4901-b22e-336dbb768643",
"name" : "Test Workspace [2026-07-15T11:39:51.200250259]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/5e5adac1-8b7b-4f94-99d5-04c10ee3fdc1"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/5e5adac1-8b7b-4f94-99d5-04c10ee3fdc1",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/aa78e9fb-d24e-44c7-8e8b-6d4336a29ec2"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/ca2283db-81f8-4995-a6fd-9fce0428fb96"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/93f2df1b-81e1-4988-89d4-e3f07ee0b269"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/93f2df1b-81e1-4988-89d4-e3f07ee0b269/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/bca706df-98da-4901-b22e-336dbb768643"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/workspaces/bca706df-98da-4901-b22e-336dbb768643/notifications?before=2026-07-15T11%3A40%3A01.445177956&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/bb92fa73-1177-4f5c-9786-29c1608ddd84' -i -X GET
import requests
url = "https://app.matatika.com/api/notifications/bb92fa73-1177-4f5c-9786-29c1608ddd84"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Notification with HAL links.
{
"id" : "bb92fa73-1177-4f5c-9786-29c1608ddd84",
"created" : "2026-07-15T11:40:00.659147",
"lastModified" : "2026-07-15T11:40:00.659147",
"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" : "604979df-c7f7-442a-8b62-8de19769867c",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-07-15T11:39:57.149628",
"lastModified" : "2026-07-15T11:39:57.149628",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "93f2df1b-81e1-4988-89d4-e3f07ee0b269"
},
"dataset" : {
"id" : "93f2df1b-81e1-4988-89d4-e3f07ee0b269",
"published" : "2026-07-15T11:39:51.565575",
"alias" : "analytics-tables",
"workspaceId" : "bca706df-98da-4901-b22e-336dbb768643",
"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 = 'qubftlg'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-07-15T11:39:51.569342",
"score" : 1.0
},
"workspace" : {
"id" : "bca706df-98da-4901-b22e-336dbb768643",
"name" : "Test Workspace [2026-07-15T11:39:51.200250259]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/bb92fa73-1177-4f5c-9786-29c1608ddd84"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/bb92fa73-1177-4f5c-9786-29c1608ddd84",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/aa78e9fb-d24e-44c7-8e8b-6d4336a29ec2"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/604979df-c7f7-442a-8b62-8de19769867c"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/93f2df1b-81e1-4988-89d4-e3f07ee0b269"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/93f2df1b-81e1-4988-89d4-e3f07ee0b269/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/bca706df-98da-4901-b22e-336dbb768643"
}
}
}
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-07-15T11%3A40%3A05.877466' -i -X PUT \
-H 'Content-Type: application/json'
import requests
url = "https://app.matatika.com/api/notifications?since=2026-07-15T11%3A40%3A05.877466"
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" : "46b89d5a-e0de-4078-a7e5-9a9c84e640a1",
"created" : "2026-07-15T11:40:07.942496",
"lastModified" : "2026-07-15T11:40:07.942496",
"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" : "9f9c9d70-6162-4193-ba38-0f4f0471bb14",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-07-15T11:40:07.041351",
"lastModified" : "2026-07-15T11:40:07.041352",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "93f2df1b-81e1-4988-89d4-e3f07ee0b269"
},
"dataset" : {
"id" : "93f2df1b-81e1-4988-89d4-e3f07ee0b269",
"published" : "2026-07-15T11:39:51.565575",
"alias" : "analytics-tables",
"workspaceId" : "bca706df-98da-4901-b22e-336dbb768643",
"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 = 'qubftlg'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-07-15T11:39:51.569342",
"score" : 1.0
},
"workspace" : {
"id" : "bca706df-98da-4901-b22e-336dbb768643",
"name" : "Test Workspace [2026-07-15T11:39:51.200250259]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications/46b89d5a-e0de-4078-a7e5-9a9c84e640a1"
},
"delete notification" : {
"href" : "https://app.matatika.com/api/notifications/46b89d5a-e0de-4078-a7e5-9a9c84e640a1",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.matatika.com/api/channels/aa78e9fb-d24e-44c7-8e8b-6d4336a29ec2"
},
"datasetComment" : {
"href" : "https://app.matatika.com/api/comments/9f9c9d70-6162-4193-ba38-0f4f0471bb14"
},
"dataset" : {
"href" : "https://app.matatika.com/api/datasets/93f2df1b-81e1-4988-89d4-e3f07ee0b269"
},
"data" : {
"href" : "https://app.matatika.com/api/datasets/93f2df1b-81e1-4988-89d4-e3f07ee0b269/data"
},
"workspace" : {
"href" : "https://app.matatika.com/api/workspaces/bca706df-98da-4901-b22e-336dbb768643"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/notifications?since=2026-07-15T11%3A40%3A05.877466&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/bb92fa73-1177-4f5c-9786-29c1608ddd84' -i -X DELETE
import requests
url = "https://app.matatika.com/api/notifications/bb92fa73-1177-4f5c-9786-29c1608ddd84"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("DELETE", url, headers=headers)
print(response.text.encode('utf8'))
Response
204 No Content
No response body provided.