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" : "e1ef0214-6a45-401f-833e-d8a06634a6ac",
"created" : "2026-09-02T10:17:42.282675",
"lastModified" : "2026-09-02T10:17:42.282676",
"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" : "1a7fcec8-860d-4b8e-884a-3ce5cec87cd8",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-02T10:17:42.185539",
"lastModified" : "2026-09-02T10:17:42.185539",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "d92044dd-cc86-4416-800e-207a1e7cdd2d"
},
"dataset" : {
"id" : "d92044dd-cc86-4416-800e-207a1e7cdd2d",
"published" : "2026-09-02T10:17:36.319023",
"alias" : "analytics-tables",
"workspaceId" : "4bd5aefe-34d3-473f-8245-4c90e20530cf",
"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 = 'eldaury'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-02T10:17:36.334099",
"score" : 1.0
},
"workspace" : {
"id" : "4bd5aefe-34d3-473f-8245-4c90e20530cf",
"name" : "Test Workspace [2026-09-02T10:17:35.668280159]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/e1ef0214-6a45-401f-833e-d8a06634a6ac"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/e1ef0214-6a45-401f-833e-d8a06634a6ac",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/14b0a3f3-24f8-4cb5-9f16-78f405e7e380"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/1a7fcec8-860d-4b8e-884a-3ce5cec87cd8"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/d92044dd-cc86-4416-800e-207a1e7cdd2d"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/d92044dd-cc86-4416-800e-207a1e7cdd2d/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/4bd5aefe-34d3-473f-8245-4c90e20530cf"
}
}
}
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-02T10%3A17%3A43.260771271&since=2021-01-01T00%3A00' -i -X GET
import requests
url = "https://app.meltano.com:443/api/notifications?before=2026-09-02T10%3A17%3A43.260771271&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" : "e1ef0214-6a45-401f-833e-d8a06634a6ac",
"created" : "2026-09-02T10:17:42.282675",
"lastModified" : "2026-09-02T10:17:42.282676",
"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" : "1a7fcec8-860d-4b8e-884a-3ce5cec87cd8",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-02T10:17:42.185539",
"lastModified" : "2026-09-02T10:17:42.185539",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "d92044dd-cc86-4416-800e-207a1e7cdd2d"
},
"dataset" : {
"id" : "d92044dd-cc86-4416-800e-207a1e7cdd2d",
"published" : "2026-09-02T10:17:36.319023",
"alias" : "analytics-tables",
"workspaceId" : "4bd5aefe-34d3-473f-8245-4c90e20530cf",
"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 = 'eldaury'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-02T10:17:36.334099",
"score" : 1.0
},
"workspace" : {
"id" : "4bd5aefe-34d3-473f-8245-4c90e20530cf",
"name" : "Test Workspace [2026-09-02T10:17:35.668280159]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/e1ef0214-6a45-401f-833e-d8a06634a6ac"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/e1ef0214-6a45-401f-833e-d8a06634a6ac",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/14b0a3f3-24f8-4cb5-9f16-78f405e7e380"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/1a7fcec8-860d-4b8e-884a-3ce5cec87cd8"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/d92044dd-cc86-4416-800e-207a1e7cdd2d"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/d92044dd-cc86-4416-800e-207a1e7cdd2d/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/4bd5aefe-34d3-473f-8245-4c90e20530cf"
}
}
}, {
"id" : "e2ba757a-c8ad-46fd-a878-94651b6f0826",
"created" : "2026-09-02T10:17:42.210169",
"lastModified" : "2026-09-02T10:17:42.21017",
"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" : "47c5fc75-5a94-41d1-936e-d531bb82415c",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-02T10:17:42.058767",
"lastModified" : "2026-09-02T10:17:42.058768",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "d92044dd-cc86-4416-800e-207a1e7cdd2d"
},
"dataset" : {
"id" : "d92044dd-cc86-4416-800e-207a1e7cdd2d",
"published" : "2026-09-02T10:17:36.319023",
"alias" : "analytics-tables",
"workspaceId" : "4bd5aefe-34d3-473f-8245-4c90e20530cf",
"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 = 'eldaury'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-02T10:17:36.334099",
"score" : 1.0
},
"workspace" : {
"id" : "4bd5aefe-34d3-473f-8245-4c90e20530cf",
"name" : "Test Workspace [2026-09-02T10:17:35.668280159]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/e2ba757a-c8ad-46fd-a878-94651b6f0826"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/e2ba757a-c8ad-46fd-a878-94651b6f0826",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/14b0a3f3-24f8-4cb5-9f16-78f405e7e380"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/47c5fc75-5a94-41d1-936e-d531bb82415c"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/d92044dd-cc86-4416-800e-207a1e7cdd2d"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/d92044dd-cc86-4416-800e-207a1e7cdd2d/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/4bd5aefe-34d3-473f-8245-4c90e20530cf"
}
}
}, {
"id" : "6320066c-8f28-4a7e-9301-7a035f61322c",
"created" : "2026-09-02T10:17:42.121706",
"lastModified" : "2026-09-02T10:17:42.121707",
"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" : "5b36dbf2-a5b1-46cf-94db-aba5aee098a8",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-02T10:17:41.941606",
"lastModified" : "2026-09-02T10:17:41.941606",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "d92044dd-cc86-4416-800e-207a1e7cdd2d"
},
"dataset" : {
"id" : "d92044dd-cc86-4416-800e-207a1e7cdd2d",
"published" : "2026-09-02T10:17:36.319023",
"alias" : "analytics-tables",
"workspaceId" : "4bd5aefe-34d3-473f-8245-4c90e20530cf",
"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 = 'eldaury'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-02T10:17:36.334099",
"score" : 1.0
},
"workspace" : {
"id" : "4bd5aefe-34d3-473f-8245-4c90e20530cf",
"name" : "Test Workspace [2026-09-02T10:17:35.668280159]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/6320066c-8f28-4a7e-9301-7a035f61322c"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/6320066c-8f28-4a7e-9301-7a035f61322c",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/14b0a3f3-24f8-4cb5-9f16-78f405e7e380"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/5b36dbf2-a5b1-46cf-94db-aba5aee098a8"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/d92044dd-cc86-4416-800e-207a1e7cdd2d"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/d92044dd-cc86-4416-800e-207a1e7cdd2d/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/4bd5aefe-34d3-473f-8245-4c90e20530cf"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications?before=2026-09-02T10%3A17%3A43.260771271&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/4bd5aefe-34d3-473f-8245-4c90e20530cf/notifications?before=2026-09-02T10%3A17%3A43.386344231&since=2021-01-01T00%3A00' -i -X GET
import requests
url = "https://app.meltano.com:443/api/workspaces/4bd5aefe-34d3-473f-8245-4c90e20530cf/notifications?before=2026-09-02T10%3A17%3A43.386344231&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" : "e1ef0214-6a45-401f-833e-d8a06634a6ac",
"created" : "2026-09-02T10:17:42.282675",
"lastModified" : "2026-09-02T10:17:42.282676",
"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" : "1a7fcec8-860d-4b8e-884a-3ce5cec87cd8",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-02T10:17:42.185539",
"lastModified" : "2026-09-02T10:17:42.185539",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "d92044dd-cc86-4416-800e-207a1e7cdd2d"
},
"dataset" : {
"id" : "d92044dd-cc86-4416-800e-207a1e7cdd2d",
"published" : "2026-09-02T10:17:36.319023",
"alias" : "analytics-tables",
"workspaceId" : "4bd5aefe-34d3-473f-8245-4c90e20530cf",
"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 = 'eldaury'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-02T10:17:36.334099",
"score" : 1.0
},
"workspace" : {
"id" : "4bd5aefe-34d3-473f-8245-4c90e20530cf",
"name" : "Test Workspace [2026-09-02T10:17:35.668280159]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/e1ef0214-6a45-401f-833e-d8a06634a6ac"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/e1ef0214-6a45-401f-833e-d8a06634a6ac",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/14b0a3f3-24f8-4cb5-9f16-78f405e7e380"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/1a7fcec8-860d-4b8e-884a-3ce5cec87cd8"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/d92044dd-cc86-4416-800e-207a1e7cdd2d"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/d92044dd-cc86-4416-800e-207a1e7cdd2d/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/4bd5aefe-34d3-473f-8245-4c90e20530cf"
}
}
}, {
"id" : "e2ba757a-c8ad-46fd-a878-94651b6f0826",
"created" : "2026-09-02T10:17:42.210169",
"lastModified" : "2026-09-02T10:17:42.21017",
"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" : "47c5fc75-5a94-41d1-936e-d531bb82415c",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-02T10:17:42.058767",
"lastModified" : "2026-09-02T10:17:42.058768",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "d92044dd-cc86-4416-800e-207a1e7cdd2d"
},
"dataset" : {
"id" : "d92044dd-cc86-4416-800e-207a1e7cdd2d",
"published" : "2026-09-02T10:17:36.319023",
"alias" : "analytics-tables",
"workspaceId" : "4bd5aefe-34d3-473f-8245-4c90e20530cf",
"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 = 'eldaury'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-02T10:17:36.334099",
"score" : 1.0
},
"workspace" : {
"id" : "4bd5aefe-34d3-473f-8245-4c90e20530cf",
"name" : "Test Workspace [2026-09-02T10:17:35.668280159]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/e2ba757a-c8ad-46fd-a878-94651b6f0826"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/e2ba757a-c8ad-46fd-a878-94651b6f0826",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/14b0a3f3-24f8-4cb5-9f16-78f405e7e380"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/47c5fc75-5a94-41d1-936e-d531bb82415c"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/d92044dd-cc86-4416-800e-207a1e7cdd2d"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/d92044dd-cc86-4416-800e-207a1e7cdd2d/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/4bd5aefe-34d3-473f-8245-4c90e20530cf"
}
}
}, {
"id" : "6320066c-8f28-4a7e-9301-7a035f61322c",
"created" : "2026-09-02T10:17:42.121706",
"lastModified" : "2026-09-02T10:17:42.121707",
"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" : "5b36dbf2-a5b1-46cf-94db-aba5aee098a8",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-02T10:17:41.941606",
"lastModified" : "2026-09-02T10:17:41.941606",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "d92044dd-cc86-4416-800e-207a1e7cdd2d"
},
"dataset" : {
"id" : "d92044dd-cc86-4416-800e-207a1e7cdd2d",
"published" : "2026-09-02T10:17:36.319023",
"alias" : "analytics-tables",
"workspaceId" : "4bd5aefe-34d3-473f-8245-4c90e20530cf",
"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 = 'eldaury'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-02T10:17:36.334099",
"score" : 1.0
},
"workspace" : {
"id" : "4bd5aefe-34d3-473f-8245-4c90e20530cf",
"name" : "Test Workspace [2026-09-02T10:17:35.668280159]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/6320066c-8f28-4a7e-9301-7a035f61322c"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/6320066c-8f28-4a7e-9301-7a035f61322c",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/14b0a3f3-24f8-4cb5-9f16-78f405e7e380"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/5b36dbf2-a5b1-46cf-94db-aba5aee098a8"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/d92044dd-cc86-4416-800e-207a1e7cdd2d"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/d92044dd-cc86-4416-800e-207a1e7cdd2d/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/4bd5aefe-34d3-473f-8245-4c90e20530cf"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/workspaces/4bd5aefe-34d3-473f-8245-4c90e20530cf/notifications?before=2026-09-02T10%3A17%3A43.386344231&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/e1ef0214-6a45-401f-833e-d8a06634a6ac' -i -X GET
import requests
url = "https://app.meltano.com:443/api/notifications/e1ef0214-6a45-401f-833e-d8a06634a6ac"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Notification with HAL links.
{
"id" : "e1ef0214-6a45-401f-833e-d8a06634a6ac",
"created" : "2026-09-02T10:17:42.282675",
"lastModified" : "2026-09-02T10:17:42.282676",
"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" : "1a7fcec8-860d-4b8e-884a-3ce5cec87cd8",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-02T10:17:42.185539",
"lastModified" : "2026-09-02T10:17:42.185539",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "d92044dd-cc86-4416-800e-207a1e7cdd2d"
},
"dataset" : {
"id" : "d92044dd-cc86-4416-800e-207a1e7cdd2d",
"published" : "2026-09-02T10:17:36.319023",
"alias" : "analytics-tables",
"workspaceId" : "4bd5aefe-34d3-473f-8245-4c90e20530cf",
"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 = 'eldaury'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-02T10:17:36.334099",
"score" : 1.0
},
"workspace" : {
"id" : "4bd5aefe-34d3-473f-8245-4c90e20530cf",
"name" : "Test Workspace [2026-09-02T10:17:35.668280159]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/e1ef0214-6a45-401f-833e-d8a06634a6ac"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/e1ef0214-6a45-401f-833e-d8a06634a6ac",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/14b0a3f3-24f8-4cb5-9f16-78f405e7e380"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/1a7fcec8-860d-4b8e-884a-3ce5cec87cd8"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/d92044dd-cc86-4416-800e-207a1e7cdd2d"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/d92044dd-cc86-4416-800e-207a1e7cdd2d/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/4bd5aefe-34d3-473f-8245-4c90e20530cf"
}
}
}
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-02T10%3A17%3A47.401285' -i -X PUT \
-H 'Content-Type: application/json'
import requests
url = "https://app.meltano.com:443/api/notifications?since=2026-09-02T10%3A17%3A47.401285"
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" : "f2b6556f-c526-4a91-b3f9-34d65642781e",
"created" : "2026-09-02T10:17:48.469972",
"lastModified" : "2026-09-02T10:17:48.469973",
"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" : "f2322c9a-41d7-4212-ad7d-1fafc9e07c5a",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-02T10:17:48.157893",
"lastModified" : "2026-09-02T10:17:48.157894",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "d92044dd-cc86-4416-800e-207a1e7cdd2d"
},
"dataset" : {
"id" : "d92044dd-cc86-4416-800e-207a1e7cdd2d",
"published" : "2026-09-02T10:17:36.319023",
"alias" : "analytics-tables",
"workspaceId" : "4bd5aefe-34d3-473f-8245-4c90e20530cf",
"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 = 'eldaury'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-02T10:17:36.334099",
"score" : 1.0
},
"workspace" : {
"id" : "4bd5aefe-34d3-473f-8245-4c90e20530cf",
"name" : "Test Workspace [2026-09-02T10:17:35.668280159]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/f2b6556f-c526-4a91-b3f9-34d65642781e"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/f2b6556f-c526-4a91-b3f9-34d65642781e",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/14b0a3f3-24f8-4cb5-9f16-78f405e7e380"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/f2322c9a-41d7-4212-ad7d-1fafc9e07c5a"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/d92044dd-cc86-4416-800e-207a1e7cdd2d"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/d92044dd-cc86-4416-800e-207a1e7cdd2d/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/4bd5aefe-34d3-473f-8245-4c90e20530cf"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications?since=2026-09-02T10%3A17%3A47.401285&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/e1ef0214-6a45-401f-833e-d8a06634a6ac' -i -X DELETE
import requests
url = "https://app.meltano.com:443/api/notifications/e1ef0214-6a45-401f-833e-d8a06634a6ac"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("DELETE", url, headers=headers)
print(response.text.encode('utf8'))
Response
204 No Content
No response body provided.