Comments
Comments aid conversation and collaboration around workspace datasets. Comments can be made on datasets, or other comments to form threads.
Objects
Comment
| Path | JSON Type | Format | Description |
|---|---|---|---|
id | string | Version 4 UUID | The comment ID |
message | string | The comment message | |
likeCount | number | Unsigned integer | The number of likes the comment has received |
likedByProfiles | object[] | Array of Members | The workspace members that have liked the comment |
created | string | ISO 8601 timestamp | Timestamp denoting when the comment was created |
lastModified | string | ISO 8601 timestamp | Timestamp denoting when the comment was last modified |
from | object | Member | The comment author |
commentCount | number | Unsigned integer | The number of replies the comment has received |
datasetId | string | Version 4 UUID | The ID of the dataset comment subject |
parentId | string | Version 4 UUID | The ID of the parent comment |
{
"id" : "9ab79b1a-e0f4-40c4-a033-d52732d28395",
"message" : "SIT-generated reply Pesho [2026-09-18T06:46:54.816909012] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-18T06:46:54.87239",
"lastModified" : "2026-09-18T06:46:54.872391",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "49ef4540-3b83-422d-b1ca-d0084c0cbce1",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395",
"type" : "POST"
}
}
}
Requests
View all comments on a dataset
GET /api/datasets/{dataset-id}/comments
Returns all comments on the dataset {dataset-id}.
Prerequisites
- Dataset
{dataset-id}must exist
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.meltano.com:443/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments' -i -X GET
import requests
url = "https://app.meltano.com:443/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Comment collection with HAL links.
{
"_embedded" : {
"datasetComments" : [ {
"id" : "5b4cd1ab-c7d9-43e0-9fed-432261682d5f",
"message" : "SIT-generated reply Pesho [2026-09-18T06:46:53.760761321] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-18T06:46:53.82188",
"lastModified" : "2026-09-18T06:46:53.82188",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "49ef4540-3b83-422d-b1ca-d0084c0cbce1",
"_links" : {
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments/5b4cd1ab-c7d9-43e0-9fed-432261682d5f",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/5b4cd1ab-c7d9-43e0-9fed-432261682d5f",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/5b4cd1ab-c7d9-43e0-9fed-432261682d5f"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/5b4cd1ab-c7d9-43e0-9fed-432261682d5f/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/5b4cd1ab-c7d9-43e0-9fed-432261682d5f",
"type" : "POST"
}
}
}, {
"id" : "6086bc01-a9d2-48e2-b38f-72a22a5385ca",
"message" : "SIT-generated reply Pesho [2026-09-18T06:46:53.640788852] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-18T06:46:53.686725",
"lastModified" : "2026-09-18T06:46:53.686725",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "49ef4540-3b83-422d-b1ca-d0084c0cbce1",
"_links" : {
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments/6086bc01-a9d2-48e2-b38f-72a22a5385ca",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/6086bc01-a9d2-48e2-b38f-72a22a5385ca",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/6086bc01-a9d2-48e2-b38f-72a22a5385ca"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/6086bc01-a9d2-48e2-b38f-72a22a5385ca/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/6086bc01-a9d2-48e2-b38f-72a22a5385ca",
"type" : "POST"
}
}
}, {
"id" : "e00b5f78-e465-442d-801f-6cd8bd08313e",
"message" : "SIT-generated reply Pesho [2026-09-18T06:46:53.523495515] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-18T06:46:53.565878",
"lastModified" : "2026-09-18T06:46:53.565879",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "49ef4540-3b83-422d-b1ca-d0084c0cbce1",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/e00b5f78-e465-442d-801f-6cd8bd08313e/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments/e00b5f78-e465-442d-801f-6cd8bd08313e",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/e00b5f78-e465-442d-801f-6cd8bd08313e",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/e00b5f78-e465-442d-801f-6cd8bd08313e"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/e00b5f78-e465-442d-801f-6cd8bd08313e/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/e00b5f78-e465-442d-801f-6cd8bd08313e",
"type" : "POST"
}
}
}, {
"id" : "ec0c77ea-32d5-48c0-8959-1e4c7cc50755",
"message" : "SIT-generated reply Pesho [2026-09-18T06:46:51.952470718] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-18T06:46:52.002666",
"lastModified" : "2026-09-18T06:46:52.002667",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 3,
"datasetId" : "49ef4540-3b83-422d-b1ca-d0084c0cbce1",
"_links" : {
"comments" : {
"href" : "https://app.meltano.com/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments?parentId=ec0c77ea-32d5-48c0-8959-1e4c7cc50755",
"type" : "GET"
},
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/ec0c77ea-32d5-48c0-8959-1e4c7cc50755/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments/ec0c77ea-32d5-48c0-8959-1e4c7cc50755",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/ec0c77ea-32d5-48c0-8959-1e4c7cc50755",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/ec0c77ea-32d5-48c0-8959-1e4c7cc50755"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/ec0c77ea-32d5-48c0-8959-1e4c7cc50755/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/ec0c77ea-32d5-48c0-8959-1e4c7cc50755",
"type" : "POST"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments?page=0&size=20"
}
},
"page" : {
"size" : 20,
"totalElements" : 4,
"totalPages" : 1,
"number" : 0
}
}
View a comment
GET /api/comments/{comment-id}
Returns the comment {comment-id}.
Prerequisites
- Comment
{comment-id}must exist
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.meltano.com:443/api/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395' -i -X GET
import requests
url = "https://app.meltano.com:443/api/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Comment with HAL links.
{
"id" : "9ab79b1a-e0f4-40c4-a033-d52732d28395",
"message" : "SIT-generated reply Pesho [2026-09-18T06:46:54.816909012] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-18T06:46:54.87239",
"lastModified" : "2026-09-18T06:46:54.872391",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "49ef4540-3b83-422d-b1ca-d0084c0cbce1",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395",
"type" : "POST"
}
}
}
View the edit history of a comment
GET /api/comments/{comment-id}/history
Returns the edit history of the comment {comment-id}.
Prerequisites
- Comment
{comment-id}must exist
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.meltano.com:443/api/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395/history' -i -X GET
import requests
url = "https://app.meltano.com:443/api/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395/history"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
[ {
"lastModified" : "2026-09-18T06:46:54.884",
"message" : "SIT-generated reply Pesho [2026-09-18T06:46:54.816909012] to ",
"editVersion" : "1648444"
}, {
"lastModified" : "2026-09-18T06:46:55.055",
"message" : "SIT-generated reply Pesho [2026-09-18T06:46:54.997337616] to ",
"editVersion" : "1648445"
} ]
View all replies to a comment
GET /api/comments/{comment-id}
Returns all replies to the comment {comment-id}.
Prerequisites
- Comment
{comment-id}must exist
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.meltano.com:443/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments?parentId=ec0c77ea-32d5-48c0-8959-1e4c7cc50755' -i -X GET
import requests
url = "https://app.meltano.com:443/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments?parentId=ec0c77ea-32d5-48c0-8959-1e4c7cc50755"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Comment with HAL links.
{
"_embedded" : {
"datasetComments" : [ {
"id" : "2290e655-d367-4471-910a-2a44d76f727b",
"message" : "SIT-generated reply Pesho [2026-09-18T06:46:52.733658348] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-18T06:46:52.779157",
"lastModified" : "2026-09-18T06:46:52.779158",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "49ef4540-3b83-422d-b1ca-d0084c0cbce1",
"parentId" : "ec0c77ea-32d5-48c0-8959-1e4c7cc50755",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/2290e655-d367-4471-910a-2a44d76f727b/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments/2290e655-d367-4471-910a-2a44d76f727b",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/2290e655-d367-4471-910a-2a44d76f727b",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/2290e655-d367-4471-910a-2a44d76f727b"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/2290e655-d367-4471-910a-2a44d76f727b/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/2290e655-d367-4471-910a-2a44d76f727b",
"type" : "POST"
}
}
}, {
"id" : "ebc87dc2-1d94-4267-8b29-707ac6dd8eee",
"message" : "SIT-generated reply Pesho [2026-09-18T06:46:52.565023871] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-18T06:46:52.619851",
"lastModified" : "2026-09-18T06:46:52.619851",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "49ef4540-3b83-422d-b1ca-d0084c0cbce1",
"parentId" : "ec0c77ea-32d5-48c0-8959-1e4c7cc50755",
"_links" : {
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments/ebc87dc2-1d94-4267-8b29-707ac6dd8eee",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/ebc87dc2-1d94-4267-8b29-707ac6dd8eee",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/ebc87dc2-1d94-4267-8b29-707ac6dd8eee"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/ebc87dc2-1d94-4267-8b29-707ac6dd8eee/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/ebc87dc2-1d94-4267-8b29-707ac6dd8eee",
"type" : "POST"
}
}
}, {
"id" : "35b44965-25da-469e-8f64-0e6a9a2c1d33",
"message" : "SIT-generated reply Pesho [2026-09-18T06:46:52.420733124] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-18T06:46:52.465606",
"lastModified" : "2026-09-18T06:46:52.465607",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "49ef4540-3b83-422d-b1ca-d0084c0cbce1",
"parentId" : "ec0c77ea-32d5-48c0-8959-1e4c7cc50755",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/35b44965-25da-469e-8f64-0e6a9a2c1d33/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments/35b44965-25da-469e-8f64-0e6a9a2c1d33",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/35b44965-25da-469e-8f64-0e6a9a2c1d33",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/35b44965-25da-469e-8f64-0e6a9a2c1d33"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/35b44965-25da-469e-8f64-0e6a9a2c1d33/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/35b44965-25da-469e-8f64-0e6a9a2c1d33",
"type" : "POST"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments?parentId=ec0c77ea-32d5-48c0-8959-1e4c7cc50755&page=0&size=20"
}
},
"page" : {
"size" : 20,
"totalElements" : 3,
"totalPages" : 1,
"number" : 0
}
}
Initialise a comment on a dataset
POST /api/datasets/{dataset-id}/comments
Initialises a new comment on the dataset {dataset-id}.
Prerequisites
- Dataset
{dataset-id}must exist
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.meltano.com:443/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments' -i -X POST \
-H 'Content-Type: application/json'
import requests
url = "https://app.meltano.com:443/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("POST", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Comment with HAL links.
{
"id" : "bfb42984-0183-49d1-8578-6a0d531031c1",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-18T06:46:54.59764429",
"lastModified" : "2026-09-18T06:46:54.597645431",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "49ef4540-3b83-422d-b1ca-d0084c0cbce1",
"_links" : {
"create comment" : {
"href" : "https://app.meltano.com/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments/bfb42984-0183-49d1-8578-6a0d531031c1",
"type" : "PUT"
}
}
}
Initialise a reply to a comment
POST /api/comments/{comment-id}
Initialises a new reply comment to the comment {comment-id}.
Prerequisites
- Comment
{comment-id}must exist
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.meltano.com:443/api/comments/ec0c77ea-32d5-48c0-8959-1e4c7cc50755' -i -X POST \
-H 'Content-Type: application/json'
import requests
url = "https://app.meltano.com:443/api/comments/ec0c77ea-32d5-48c0-8959-1e4c7cc50755"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("POST", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Comment with HAL links.
{
"id" : "db9d036b-e983-4bea-92f4-6594fb69f402",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-18T06:46:54.224303323",
"lastModified" : "2026-09-18T06:46:54.224303747",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "49ef4540-3b83-422d-b1ca-d0084c0cbce1",
"parentId" : "ec0c77ea-32d5-48c0-8959-1e4c7cc50755",
"_links" : {
"create comment" : {
"href" : "https://app.meltano.com/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments/db9d036b-e983-4bea-92f4-6594fb69f402",
"type" : "PUT"
}
}
}
Create a comment
PUT /api/comments/{comment-id}
Creates the comment {comment-id}.
Prerequisites
- The comment must have been initialised in order to create it
- The target dataset
{dataset-id}or comment{comment-id}must exist
Body
Comment resource.
{
"message" : "SIT-generated reply Pesho [2026-09-18T06:46:53.967280698] to ",
"datasetId" : "49ef4540-3b83-422d-b1ca-d0084c0cbce1"
}
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.meltano.com:443/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments/fb17fff3-b78b-4443-a94b-1882b9ba81e8' -i -X PUT \
-H 'Content-Type: application/json' \
-d '{
"message" : "SIT-generated reply Pesho [2026-09-18T06:46:53.967280698] to ",
"datasetId" : "49ef4540-3b83-422d-b1ca-d0084c0cbce1"
}'
import requests
url = "https://app.meltano.com:443/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments/fb17fff3-b78b-4443-a94b-1882b9ba81e8"
data = {
"message" : "SIT-generated reply Pesho [2026-09-18T06:46:53.967280698] to ",
"datasetId" : "49ef4540-3b83-422d-b1ca-d0084c0cbce1"
}
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("PUT", url, headers=headers, data=data)
print(response.text.encode('utf8'))
Response
201 Created
Comment with HAL links.
{
"id" : "fb17fff3-b78b-4443-a94b-1882b9ba81e8",
"message" : "SIT-generated reply Pesho [2026-09-18T06:46:53.967280698] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-18T06:46:54.104371497",
"lastModified" : "2026-09-18T06:46:54.104371835",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "49ef4540-3b83-422d-b1ca-d0084c0cbce1",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/fb17fff3-b78b-4443-a94b-1882b9ba81e8/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments/fb17fff3-b78b-4443-a94b-1882b9ba81e8",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/fb17fff3-b78b-4443-a94b-1882b9ba81e8",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/fb17fff3-b78b-4443-a94b-1882b9ba81e8"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/fb17fff3-b78b-4443-a94b-1882b9ba81e8/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/fb17fff3-b78b-4443-a94b-1882b9ba81e8",
"type" : "POST"
}
}
}
Update a comment
PUT /api/comments/{comment-id}
Updates the comment {comment-id}.
Prerequisites
- Comment
{comment-id}must exist
Body
Comment resource.
{
"message" : "SIT-generated reply Pesho [2026-09-18T06:46:54.632246770] to "
}
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.meltano.com:443/api/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395' -i -X GET
import requests
url = "https://app.meltano.com:443/api/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Comment with HAL links.
{
"id" : "9ab79b1a-e0f4-40c4-a033-d52732d28395",
"message" : "SIT-generated reply Pesho [2026-09-18T06:46:54.816909012] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-18T06:46:54.87239",
"lastModified" : "2026-09-18T06:46:54.872391",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "49ef4540-3b83-422d-b1ca-d0084c0cbce1",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/49ef4540-3b83-422d-b1ca-d0084c0cbce1/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/9ab79b1a-e0f4-40c4-a033-d52732d28395",
"type" : "POST"
}
}
}
Record a like of a comment
PUT /api/comments/{comment-id}/like
Records a like of the comment {comment-id} from the authenticated user profile.
Prerequisites
- Comment
{comment-id}must exist
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.meltano.com:443/api/comments/ec0c77ea-32d5-48c0-8959-1e4c7cc50755/like' -i -X PUT \
-H 'Content-Type: application/json'
import requests
url = "https://app.meltano.com:443/api/comments/ec0c77ea-32d5-48c0-8959-1e4c7cc50755/like"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("PUT", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
No response body provided.
Remove a like from a comment
DELETE /api/comments/{comment-id}/like
Removes a like of the comment {comment-id} from the authenticated user profile.
Prerequisites
- Comment
{comment-id}must exist
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.meltano.com:443/api/comments/ec0c77ea-32d5-48c0-8959-1e4c7cc50755/like' -i -X DELETE
import requests
url = "https://app.meltano.com:443/api/comments/ec0c77ea-32d5-48c0-8959-1e4c7cc50755/like"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("DELETE", url, headers=headers)
print(response.text.encode('utf8'))
Response
204 No Content
No response body provided.
Delete a comment
DELETE /api/comments/{comment-id}
Deletes the comment {comment-id}.
Prerequisites
- Comment
{comment-id}must exist
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.meltano.com:443/api/comments/7b2e80b7-2e79-4b51-937c-797bcf51fba6' -i -X DELETE
import requests
url = "https://app.meltano.com:443/api/comments/7b2e80b7-2e79-4b51-937c-797bcf51fba6"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("DELETE", url, headers=headers)
print(response.text.encode('utf8'))
Response
204 No Content
No response body provided.