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" : "4405ebbc-20ab-4d5b-83c3-780d8fc07359",
"created" : "2026-09-14T06:11:17.924088",
"lastModified" : "2026-09-14T06:11:17.924089",
"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" : "56776a6e-64c4-41cc-9f75-872bb9974caf",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-14T06:11:17.417612",
"lastModified" : "2026-09-14T06:11:17.417612",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "258cf02a-979f-4740-94e9-8640815b8a97"
},
"dataset" : {
"id" : "258cf02a-979f-4740-94e9-8640815b8a97",
"published" : "2026-09-14T06:11:11.415407",
"alias" : "analytics-tables",
"workspaceId" : "d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e",
"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 = 'degqirz'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-14T06:11:11.434568",
"score" : 1.0
},
"workspace" : {
"id" : "d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e",
"name" : "Test Workspace [2026-09-14T06:11:10.594398889]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/4405ebbc-20ab-4d5b-83c3-780d8fc07359"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/4405ebbc-20ab-4d5b-83c3-780d8fc07359",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/d0b9e666-fd7e-422f-a718-c161d9fc168d"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/56776a6e-64c4-41cc-9f75-872bb9974caf"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/258cf02a-979f-4740-94e9-8640815b8a97"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/258cf02a-979f-4740-94e9-8640815b8a97/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e"
}
}
}
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-14T06%3A11%3A18.490922429&since=2021-01-01T00%3A00' -i -X GET
import requests
url = "https://app.meltano.com:443/api/notifications?before=2026-09-14T06%3A11%3A18.490922429&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" : "4405ebbc-20ab-4d5b-83c3-780d8fc07359",
"created" : "2026-09-14T06:11:17.924088",
"lastModified" : "2026-09-14T06:11:17.924089",
"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" : "56776a6e-64c4-41cc-9f75-872bb9974caf",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-14T06:11:17.417612",
"lastModified" : "2026-09-14T06:11:17.417612",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "258cf02a-979f-4740-94e9-8640815b8a97"
},
"dataset" : {
"id" : "258cf02a-979f-4740-94e9-8640815b8a97",
"published" : "2026-09-14T06:11:11.415407",
"alias" : "analytics-tables",
"workspaceId" : "d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e",
"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 = 'degqirz'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-14T06:11:11.434568",
"score" : 1.0
},
"workspace" : {
"id" : "d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e",
"name" : "Test Workspace [2026-09-14T06:11:10.594398889]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/4405ebbc-20ab-4d5b-83c3-780d8fc07359"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/4405ebbc-20ab-4d5b-83c3-780d8fc07359",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/d0b9e666-fd7e-422f-a718-c161d9fc168d"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/56776a6e-64c4-41cc-9f75-872bb9974caf"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/258cf02a-979f-4740-94e9-8640815b8a97"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/258cf02a-979f-4740-94e9-8640815b8a97/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e"
}
}
}, {
"id" : "7a99f8f1-f6e9-432f-a75f-652df0df53f7",
"created" : "2026-09-14T06:11:17.828854",
"lastModified" : "2026-09-14T06:11:17.828856",
"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" : "4d07e963-1ba6-416a-9d88-51273807cd9c",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-14T06:11:17.237833",
"lastModified" : "2026-09-14T06:11:17.237834",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "258cf02a-979f-4740-94e9-8640815b8a97"
},
"dataset" : {
"id" : "258cf02a-979f-4740-94e9-8640815b8a97",
"published" : "2026-09-14T06:11:11.415407",
"alias" : "analytics-tables",
"workspaceId" : "d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e",
"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 = 'degqirz'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-14T06:11:11.434568",
"score" : 1.0
},
"workspace" : {
"id" : "d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e",
"name" : "Test Workspace [2026-09-14T06:11:10.594398889]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/7a99f8f1-f6e9-432f-a75f-652df0df53f7"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/7a99f8f1-f6e9-432f-a75f-652df0df53f7",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/d0b9e666-fd7e-422f-a718-c161d9fc168d"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/4d07e963-1ba6-416a-9d88-51273807cd9c"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/258cf02a-979f-4740-94e9-8640815b8a97"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/258cf02a-979f-4740-94e9-8640815b8a97/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e"
}
}
}, {
"id" : "ca5bb995-ebef-4be4-b609-28aec37ef18f",
"created" : "2026-09-14T06:11:17.731986",
"lastModified" : "2026-09-14T06:11:17.731988",
"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" : "492bbd2c-766d-4d67-9236-cf420e26496b",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-14T06:11:17.094454",
"lastModified" : "2026-09-14T06:11:17.094454",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "258cf02a-979f-4740-94e9-8640815b8a97"
},
"dataset" : {
"id" : "258cf02a-979f-4740-94e9-8640815b8a97",
"published" : "2026-09-14T06:11:11.415407",
"alias" : "analytics-tables",
"workspaceId" : "d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e",
"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 = 'degqirz'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-14T06:11:11.434568",
"score" : 1.0
},
"workspace" : {
"id" : "d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e",
"name" : "Test Workspace [2026-09-14T06:11:10.594398889]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/ca5bb995-ebef-4be4-b609-28aec37ef18f"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/ca5bb995-ebef-4be4-b609-28aec37ef18f",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/d0b9e666-fd7e-422f-a718-c161d9fc168d"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/492bbd2c-766d-4d67-9236-cf420e26496b"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/258cf02a-979f-4740-94e9-8640815b8a97"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/258cf02a-979f-4740-94e9-8640815b8a97/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications?before=2026-09-14T06%3A11%3A18.490922429&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/d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e/notifications?before=2026-09-14T06%3A11%3A18.614789167&since=2021-01-01T00%3A00' -i -X GET
import requests
url = "https://app.meltano.com:443/api/workspaces/d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e/notifications?before=2026-09-14T06%3A11%3A18.614789167&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" : "4405ebbc-20ab-4d5b-83c3-780d8fc07359",
"created" : "2026-09-14T06:11:17.924088",
"lastModified" : "2026-09-14T06:11:17.924089",
"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" : "56776a6e-64c4-41cc-9f75-872bb9974caf",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-14T06:11:17.417612",
"lastModified" : "2026-09-14T06:11:17.417612",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "258cf02a-979f-4740-94e9-8640815b8a97"
},
"dataset" : {
"id" : "258cf02a-979f-4740-94e9-8640815b8a97",
"published" : "2026-09-14T06:11:11.415407",
"alias" : "analytics-tables",
"workspaceId" : "d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e",
"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 = 'degqirz'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-14T06:11:11.434568",
"score" : 1.0
},
"workspace" : {
"id" : "d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e",
"name" : "Test Workspace [2026-09-14T06:11:10.594398889]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/4405ebbc-20ab-4d5b-83c3-780d8fc07359"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/4405ebbc-20ab-4d5b-83c3-780d8fc07359",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/d0b9e666-fd7e-422f-a718-c161d9fc168d"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/56776a6e-64c4-41cc-9f75-872bb9974caf"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/258cf02a-979f-4740-94e9-8640815b8a97"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/258cf02a-979f-4740-94e9-8640815b8a97/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e"
}
}
}, {
"id" : "7a99f8f1-f6e9-432f-a75f-652df0df53f7",
"created" : "2026-09-14T06:11:17.828854",
"lastModified" : "2026-09-14T06:11:17.828856",
"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" : "4d07e963-1ba6-416a-9d88-51273807cd9c",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-14T06:11:17.237833",
"lastModified" : "2026-09-14T06:11:17.237834",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "258cf02a-979f-4740-94e9-8640815b8a97"
},
"dataset" : {
"id" : "258cf02a-979f-4740-94e9-8640815b8a97",
"published" : "2026-09-14T06:11:11.415407",
"alias" : "analytics-tables",
"workspaceId" : "d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e",
"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 = 'degqirz'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-14T06:11:11.434568",
"score" : 1.0
},
"workspace" : {
"id" : "d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e",
"name" : "Test Workspace [2026-09-14T06:11:10.594398889]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/7a99f8f1-f6e9-432f-a75f-652df0df53f7"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/7a99f8f1-f6e9-432f-a75f-652df0df53f7",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/d0b9e666-fd7e-422f-a718-c161d9fc168d"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/4d07e963-1ba6-416a-9d88-51273807cd9c"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/258cf02a-979f-4740-94e9-8640815b8a97"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/258cf02a-979f-4740-94e9-8640815b8a97/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e"
}
}
}, {
"id" : "ca5bb995-ebef-4be4-b609-28aec37ef18f",
"created" : "2026-09-14T06:11:17.731986",
"lastModified" : "2026-09-14T06:11:17.731988",
"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" : "492bbd2c-766d-4d67-9236-cf420e26496b",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-14T06:11:17.094454",
"lastModified" : "2026-09-14T06:11:17.094454",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "258cf02a-979f-4740-94e9-8640815b8a97"
},
"dataset" : {
"id" : "258cf02a-979f-4740-94e9-8640815b8a97",
"published" : "2026-09-14T06:11:11.415407",
"alias" : "analytics-tables",
"workspaceId" : "d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e",
"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 = 'degqirz'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-14T06:11:11.434568",
"score" : 1.0
},
"workspace" : {
"id" : "d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e",
"name" : "Test Workspace [2026-09-14T06:11:10.594398889]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/ca5bb995-ebef-4be4-b609-28aec37ef18f"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/ca5bb995-ebef-4be4-b609-28aec37ef18f",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/d0b9e666-fd7e-422f-a718-c161d9fc168d"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/492bbd2c-766d-4d67-9236-cf420e26496b"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/258cf02a-979f-4740-94e9-8640815b8a97"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/258cf02a-979f-4740-94e9-8640815b8a97/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/workspaces/d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e/notifications?before=2026-09-14T06%3A11%3A18.614789167&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/4405ebbc-20ab-4d5b-83c3-780d8fc07359' -i -X GET
import requests
url = "https://app.meltano.com:443/api/notifications/4405ebbc-20ab-4d5b-83c3-780d8fc07359"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Notification with HAL links.
{
"id" : "4405ebbc-20ab-4d5b-83c3-780d8fc07359",
"created" : "2026-09-14T06:11:17.924088",
"lastModified" : "2026-09-14T06:11:17.924089",
"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" : "56776a6e-64c4-41cc-9f75-872bb9974caf",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-14T06:11:17.417612",
"lastModified" : "2026-09-14T06:11:17.417612",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "258cf02a-979f-4740-94e9-8640815b8a97"
},
"dataset" : {
"id" : "258cf02a-979f-4740-94e9-8640815b8a97",
"published" : "2026-09-14T06:11:11.415407",
"alias" : "analytics-tables",
"workspaceId" : "d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e",
"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 = 'degqirz'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-14T06:11:11.434568",
"score" : 1.0
},
"workspace" : {
"id" : "d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e",
"name" : "Test Workspace [2026-09-14T06:11:10.594398889]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/4405ebbc-20ab-4d5b-83c3-780d8fc07359"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/4405ebbc-20ab-4d5b-83c3-780d8fc07359",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/d0b9e666-fd7e-422f-a718-c161d9fc168d"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/56776a6e-64c4-41cc-9f75-872bb9974caf"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/258cf02a-979f-4740-94e9-8640815b8a97"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/258cf02a-979f-4740-94e9-8640815b8a97/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e"
}
}
}
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-14T06%3A11%3A19.017902' -i -X PUT \
-H 'Content-Type: application/json'
import requests
url = "https://app.meltano.com:443/api/notifications?since=2026-09-14T06%3A11%3A19.017902"
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" : "e2e37d51-4a40-4605-b5fb-e31b4f6dbcef",
"created" : "2026-09-14T06:11:23.468787",
"lastModified" : "2026-09-14T06:11:23.468789",
"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" : "723c407d-74d7-44bc-ba2f-744cdc1cc27e",
"message" : "SIT-generated comment",
"likeCount" : 0,
"created" : "2026-09-14T06:11:20.175764",
"lastModified" : "2026-09-14T06:11:20.175771",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "258cf02a-979f-4740-94e9-8640815b8a97"
},
"dataset" : {
"id" : "258cf02a-979f-4740-94e9-8640815b8a97",
"published" : "2026-09-14T06:11:11.415407",
"alias" : "analytics-tables",
"workspaceId" : "d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e",
"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 = 'degqirz'```",
"likeCount" : 0,
"commentCount" : 0,
"viewCount" : 0,
"created" : "2026-09-14T06:11:11.434568",
"score" : 1.0
},
"workspace" : {
"id" : "d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e",
"name" : "Test Workspace [2026-09-14T06:11:10.594398889]"
}
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications/e2e37d51-4a40-4605-b5fb-e31b4f6dbcef"
},
"delete notification" : {
"href" : "https://app.meltano.com/api/notifications/e2e37d51-4a40-4605-b5fb-e31b4f6dbcef",
"type" : "DELETE"
},
"channel" : {
"href" : "https://app.meltano.com/api/channels/d0b9e666-fd7e-422f-a718-c161d9fc168d"
},
"datasetComment" : {
"href" : "https://app.meltano.com/api/comments/723c407d-74d7-44bc-ba2f-744cdc1cc27e"
},
"dataset" : {
"href" : "https://app.meltano.com/api/datasets/258cf02a-979f-4740-94e9-8640815b8a97"
},
"data" : {
"href" : "https://app.meltano.com/api/datasets/258cf02a-979f-4740-94e9-8640815b8a97/data"
},
"workspace" : {
"href" : "https://app.meltano.com/api/workspaces/d7a3dd8d-1d97-4ee4-8cfd-e5bd7423b60e"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/notifications?since=2026-09-14T06%3A11%3A19.017902&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/4405ebbc-20ab-4d5b-83c3-780d8fc07359' -i -X DELETE
import requests
url = "https://app.meltano.com:443/api/notifications/4405ebbc-20ab-4d5b-83c3-780d8fc07359"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("DELETE", url, headers=headers)
print(response.text.encode('utf8'))
Response
204 No Content
No response body provided.