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" : "a8eb13d6-2f18-46e2-904f-18dd3968c862",
"created" : "2026-09-18T06:53:30.137015",
"lastModified" : "2026-09-18T06:53:30.137017",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"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" : "785090f3-0710-4c44-93e9-c38734537d2a",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-18T06:53:27.156707",
"lastModified" : "2026-09-18T06:53:27.156707",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "23aff1b2-fa2d-49cf-b657-0eef07e21fdd"
},
"dataset" : {
"id" : "23aff1b2-fa2d-49cf-b657-0eef07e21fdd",
"published" : "2026-09-18T06:53:21.320006",
"alias" : "analytics-tables",
"workspaceId" : "c9505206-2ed2-4092-ab77-110cea46aac2",
"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 = 'eyrytei'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-18T06:53:21.331778",
"score" : 1.0
},
"workspace" : {
"id" : "c9505206-2ed2-4092-ab77-110cea46aac2",
"name" : "Test Workspace [2026-09-18T06:53:20.622299974]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/a8eb13d6-2f18-46e2-904f-18dd3968c862"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/a8eb13d6-2f18-46e2-904f-18dd3968c862",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/7b1e80d3-db43-4e9c-bb6c-959d36c81575"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/785090f3-0710-4c44-93e9-c38734537d2a"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/23aff1b2-fa2d-49cf-b657-0eef07e21fdd"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/23aff1b2-fa2d-49cf-b657-0eef07e21fdd/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/c9505206-2ed2-4092-ab77-110cea46aac2"
}
}
}
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.meltano.com:443/api/notifications?before=2026-09-18T06%3A53%3A30.378715272&since=2021-01-01T00%3A00' -i -X GET
import requests
url = "https://app.meltano.com:443/api/notifications?before=2026-09-18T06%3A53%3A30.378715272&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" : "a8eb13d6-2f18-46e2-904f-18dd3968c862",
"created" : "2026-09-18T06:53:30.137015",
"lastModified" : "2026-09-18T06:53:30.137017",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"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" : "785090f3-0710-4c44-93e9-c38734537d2a",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-18T06:53:27.156707",
"lastModified" : "2026-09-18T06:53:27.156707",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "23aff1b2-fa2d-49cf-b657-0eef07e21fdd"
},
"dataset" : {
"id" : "23aff1b2-fa2d-49cf-b657-0eef07e21fdd",
"published" : "2026-09-18T06:53:21.320006",
"alias" : "analytics-tables",
"workspaceId" : "c9505206-2ed2-4092-ab77-110cea46aac2",
"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 = 'eyrytei'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-18T06:53:21.331778",
"score" : 1.0
},
"workspace" : {
"id" : "c9505206-2ed2-4092-ab77-110cea46aac2",
"name" : "Test Workspace [2026-09-18T06:53:20.622299974]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/a8eb13d6-2f18-46e2-904f-18dd3968c862"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/a8eb13d6-2f18-46e2-904f-18dd3968c862",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/7b1e80d3-db43-4e9c-bb6c-959d36c81575"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/785090f3-0710-4c44-93e9-c38734537d2a"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/23aff1b2-fa2d-49cf-b657-0eef07e21fdd"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/23aff1b2-fa2d-49cf-b657-0eef07e21fdd/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/c9505206-2ed2-4092-ab77-110cea46aac2"
}
}
}, {
"id" : "abbfb20f-9b4f-4ce0-9661-e588c6698f80",
"created" : "2026-09-18T06:53:30.061118",
"lastModified" : "2026-09-18T06:53:30.06112",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"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" : "db007abb-6128-4297-bdc5-9657dac3121f",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-18T06:53:27.017967",
"lastModified" : "2026-09-18T06:53:27.017968",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "23aff1b2-fa2d-49cf-b657-0eef07e21fdd"
},
"dataset" : {
"id" : "23aff1b2-fa2d-49cf-b657-0eef07e21fdd",
"published" : "2026-09-18T06:53:21.320006",
"alias" : "analytics-tables",
"workspaceId" : "c9505206-2ed2-4092-ab77-110cea46aac2",
"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 = 'eyrytei'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-18T06:53:21.331778",
"score" : 1.0
},
"workspace" : {
"id" : "c9505206-2ed2-4092-ab77-110cea46aac2",
"name" : "Test Workspace [2026-09-18T06:53:20.622299974]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/abbfb20f-9b4f-4ce0-9661-e588c6698f80"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/abbfb20f-9b4f-4ce0-9661-e588c6698f80",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/7b1e80d3-db43-4e9c-bb6c-959d36c81575"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/db007abb-6128-4297-bdc5-9657dac3121f"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/23aff1b2-fa2d-49cf-b657-0eef07e21fdd"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/23aff1b2-fa2d-49cf-b657-0eef07e21fdd/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/c9505206-2ed2-4092-ab77-110cea46aac2"
}
}
}, {
"id" : "14572c19-ed5c-4a93-90aa-e63896a316cc",
"created" : "2026-09-18T06:53:29.985873",
"lastModified" : "2026-09-18T06:53:29.985874",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"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" : "a37aa877-001d-4ffd-940e-5fe616850154",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-18T06:53:26.885202",
"lastModified" : "2026-09-18T06:53:26.885203",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "23aff1b2-fa2d-49cf-b657-0eef07e21fdd"
},
"dataset" : {
"id" : "23aff1b2-fa2d-49cf-b657-0eef07e21fdd",
"published" : "2026-09-18T06:53:21.320006",
"alias" : "analytics-tables",
"workspaceId" : "c9505206-2ed2-4092-ab77-110cea46aac2",
"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 = 'eyrytei'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-18T06:53:21.331778",
"score" : 1.0
},
"workspace" : {
"id" : "c9505206-2ed2-4092-ab77-110cea46aac2",
"name" : "Test Workspace [2026-09-18T06:53:20.622299974]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/14572c19-ed5c-4a93-90aa-e63896a316cc"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/14572c19-ed5c-4a93-90aa-e63896a316cc",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/7b1e80d3-db43-4e9c-bb6c-959d36c81575"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/a37aa877-001d-4ffd-940e-5fe616850154"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/23aff1b2-fa2d-49cf-b657-0eef07e21fdd"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/23aff1b2-fa2d-49cf-b657-0eef07e21fdd/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/c9505206-2ed2-4092-ab77-110cea46aac2"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications?before=2026-09-18T06%3A53%3A30.378715272&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.meltano.com:443/api/workspaces/c9505206-2ed2-4092-ab77-110cea46aac2/notifications?before=2026-09-18T06%3A53%3A30.471345979&since=2021-01-01T00%3A00' -i -X GET
import requests
url = "https://app.meltano.com:443/api/workspaces/c9505206-2ed2-4092-ab77-110cea46aac2/notifications?before=2026-09-18T06%3A53%3A30.471345979&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" : "a8eb13d6-2f18-46e2-904f-18dd3968c862",
"created" : "2026-09-18T06:53:30.137015",
"lastModified" : "2026-09-18T06:53:30.137017",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"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" : "785090f3-0710-4c44-93e9-c38734537d2a",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-18T06:53:27.156707",
"lastModified" : "2026-09-18T06:53:27.156707",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "23aff1b2-fa2d-49cf-b657-0eef07e21fdd"
},
"dataset" : {
"id" : "23aff1b2-fa2d-49cf-b657-0eef07e21fdd",
"published" : "2026-09-18T06:53:21.320006",
"alias" : "analytics-tables",
"workspaceId" : "c9505206-2ed2-4092-ab77-110cea46aac2",
"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 = 'eyrytei'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-18T06:53:21.331778",
"score" : 1.0
},
"workspace" : {
"id" : "c9505206-2ed2-4092-ab77-110cea46aac2",
"name" : "Test Workspace [2026-09-18T06:53:20.622299974]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/a8eb13d6-2f18-46e2-904f-18dd3968c862"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/a8eb13d6-2f18-46e2-904f-18dd3968c862",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/7b1e80d3-db43-4e9c-bb6c-959d36c81575"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/785090f3-0710-4c44-93e9-c38734537d2a"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/23aff1b2-fa2d-49cf-b657-0eef07e21fdd"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/23aff1b2-fa2d-49cf-b657-0eef07e21fdd/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/c9505206-2ed2-4092-ab77-110cea46aac2"
}
}
}, {
"id" : "abbfb20f-9b4f-4ce0-9661-e588c6698f80",
"created" : "2026-09-18T06:53:30.061118",
"lastModified" : "2026-09-18T06:53:30.06112",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"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" : "db007abb-6128-4297-bdc5-9657dac3121f",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-18T06:53:27.017967",
"lastModified" : "2026-09-18T06:53:27.017968",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "23aff1b2-fa2d-49cf-b657-0eef07e21fdd"
},
"dataset" : {
"id" : "23aff1b2-fa2d-49cf-b657-0eef07e21fdd",
"published" : "2026-09-18T06:53:21.320006",
"alias" : "analytics-tables",
"workspaceId" : "c9505206-2ed2-4092-ab77-110cea46aac2",
"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 = 'eyrytei'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-18T06:53:21.331778",
"score" : 1.0
},
"workspace" : {
"id" : "c9505206-2ed2-4092-ab77-110cea46aac2",
"name" : "Test Workspace [2026-09-18T06:53:20.622299974]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/abbfb20f-9b4f-4ce0-9661-e588c6698f80"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/abbfb20f-9b4f-4ce0-9661-e588c6698f80",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/7b1e80d3-db43-4e9c-bb6c-959d36c81575"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/db007abb-6128-4297-bdc5-9657dac3121f"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/23aff1b2-fa2d-49cf-b657-0eef07e21fdd"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/23aff1b2-fa2d-49cf-b657-0eef07e21fdd/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/c9505206-2ed2-4092-ab77-110cea46aac2"
}
}
}, {
"id" : "14572c19-ed5c-4a93-90aa-e63896a316cc",
"created" : "2026-09-18T06:53:29.985873",
"lastModified" : "2026-09-18T06:53:29.985874",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"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" : "a37aa877-001d-4ffd-940e-5fe616850154",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-18T06:53:26.885202",
"lastModified" : "2026-09-18T06:53:26.885203",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "23aff1b2-fa2d-49cf-b657-0eef07e21fdd"
},
"dataset" : {
"id" : "23aff1b2-fa2d-49cf-b657-0eef07e21fdd",
"published" : "2026-09-18T06:53:21.320006",
"alias" : "analytics-tables",
"workspaceId" : "c9505206-2ed2-4092-ab77-110cea46aac2",
"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 = 'eyrytei'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-18T06:53:21.331778",
"score" : 1.0
},
"workspace" : {
"id" : "c9505206-2ed2-4092-ab77-110cea46aac2",
"name" : "Test Workspace [2026-09-18T06:53:20.622299974]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/14572c19-ed5c-4a93-90aa-e63896a316cc"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/14572c19-ed5c-4a93-90aa-e63896a316cc",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/7b1e80d3-db43-4e9c-bb6c-959d36c81575"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/a37aa877-001d-4ffd-940e-5fe616850154"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/23aff1b2-fa2d-49cf-b657-0eef07e21fdd"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/23aff1b2-fa2d-49cf-b657-0eef07e21fdd/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/c9505206-2ed2-4092-ab77-110cea46aac2"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/workspaces/c9505206-2ed2-4092-ab77-110cea46aac2/notifications?before=2026-09-18T06%3A53%3A30.471345979&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.meltano.com:443/api/notifications/a8eb13d6-2f18-46e2-904f-18dd3968c862' -i -X GET
import requests
url = "https://app.meltano.com:443/api/notifications/a8eb13d6-2f18-46e2-904f-18dd3968c862"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Notification with HAL links.
{
"id" : "a8eb13d6-2f18-46e2-904f-18dd3968c862",
"created" : "2026-09-18T06:53:30.137015",
"lastModified" : "2026-09-18T06:53:30.137017",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"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" : "785090f3-0710-4c44-93e9-c38734537d2a",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-18T06:53:27.156707",
"lastModified" : "2026-09-18T06:53:27.156707",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "23aff1b2-fa2d-49cf-b657-0eef07e21fdd"
},
"dataset" : {
"id" : "23aff1b2-fa2d-49cf-b657-0eef07e21fdd",
"published" : "2026-09-18T06:53:21.320006",
"alias" : "analytics-tables",
"workspaceId" : "c9505206-2ed2-4092-ab77-110cea46aac2",
"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 = 'eyrytei'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-18T06:53:21.331778",
"score" : 1.0
},
"workspace" : {
"id" : "c9505206-2ed2-4092-ab77-110cea46aac2",
"name" : "Test Workspace [2026-09-18T06:53:20.622299974]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/a8eb13d6-2f18-46e2-904f-18dd3968c862"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/a8eb13d6-2f18-46e2-904f-18dd3968c862",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/7b1e80d3-db43-4e9c-bb6c-959d36c81575"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/785090f3-0710-4c44-93e9-c38734537d2a"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/23aff1b2-fa2d-49cf-b657-0eef07e21fdd"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/23aff1b2-fa2d-49cf-b657-0eef07e21fdd/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/c9505206-2ed2-4092-ab77-110cea46aac2"
}
}
}
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.meltano.com:443/api/notifications?since=2026-09-18T06%3A53%3A31.257906' -i -X PUT \
-H 'Content-Type: application/json'
import requests
url = "https://app.meltano.com:443/api/notifications?since=2026-09-18T06%3A53%3A31.257906"
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" : "d586fecd-d6d1-4975-8cd3-9fa434d220b5",
"created" : "2026-09-18T06:53:32.334301",
"lastModified" : "2026-09-18T06:53:32.33431",
"type" : "DATASET_COMMENT",
"actor" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"resolved" : false,
"_embedded" : {
"subscriberProfile" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"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" : "8dd758ba-7a6c-40a5-83c9-ac181a04081b",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-18T06:53:31.967345",
"lastModified" : "2026-09-18T06:53:31.967346",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "23aff1b2-fa2d-49cf-b657-0eef07e21fdd"
},
"dataset" : {
"id" : "23aff1b2-fa2d-49cf-b657-0eef07e21fdd",
"published" : "2026-09-18T06:53:21.320006",
"alias" : "analytics-tables",
"workspaceId" : "c9505206-2ed2-4092-ab77-110cea46aac2",
"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 = 'eyrytei'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-18T06:53:21.331778",
"score" : 1.0
},
"workspace" : {
"id" : "c9505206-2ed2-4092-ab77-110cea46aac2",
"name" : "Test Workspace [2026-09-18T06:53:20.622299974]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/d586fecd-d6d1-4975-8cd3-9fa434d220b5"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/d586fecd-d6d1-4975-8cd3-9fa434d220b5",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/7b1e80d3-db43-4e9c-bb6c-959d36c81575"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/8dd758ba-7a6c-40a5-83c9-ac181a04081b"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/23aff1b2-fa2d-49cf-b657-0eef07e21fdd"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/23aff1b2-fa2d-49cf-b657-0eef07e21fdd/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/c9505206-2ed2-4092-ab77-110cea46aac2"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications?since=2026-09-18T06%3A53%3A31.257906&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.meltano.com:443/api/notifications/a8eb13d6-2f18-46e2-904f-18dd3968c862' -i -X DELETE
import requests
url = "https://app.meltano.com:443/api/notifications/a8eb13d6-2f18-46e2-904f-18dd3968c862"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("DELETE", url, headers=headers)
print(response.text.encode('utf8'))
Response
204 No Content
No response body provided.