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" : "76d3e2c4-fa4a-4629-a784-1b7377ddbdef",
"message" : "SIT-generated reply Pesho [2026-08-07T13:19:45.021382858] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-08-07T13:19:45.0685",
"lastModified" : "2026-08-07T13:19:45.068501",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "68c594a2-1f63-4dc2-858b-12cf02759e19",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/68c594a2-1f63-4dc2-858b-12cf02759e19/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef",
"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/68c594a2-1f63-4dc2-858b-12cf02759e19/comments' -i -X GET
import requests
url = "https://app.meltano.com:443/api/datasets/68c594a2-1f63-4dc2-858b-12cf02759e19/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" : "af7856dc-a052-4f46-b584-fefdb416ed9c",
"message" : "SIT-generated reply Pesho [2026-08-07T13:19:43.986051250] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-08-07T13:19:44.038811",
"lastModified" : "2026-08-07T13:19:44.038812",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "68c594a2-1f63-4dc2-858b-12cf02759e19",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/af7856dc-a052-4f46-b584-fefdb416ed9c/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/68c594a2-1f63-4dc2-858b-12cf02759e19/comments/af7856dc-a052-4f46-b584-fefdb416ed9c",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/af7856dc-a052-4f46-b584-fefdb416ed9c",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/af7856dc-a052-4f46-b584-fefdb416ed9c"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/af7856dc-a052-4f46-b584-fefdb416ed9c/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/af7856dc-a052-4f46-b584-fefdb416ed9c",
"type" : "POST"
}
}
}, {
"id" : "b5e7cbed-2df0-4033-9ee0-953f2d80d39c",
"message" : "SIT-generated reply Pesho [2026-08-07T13:19:43.847771171] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-08-07T13:19:43.894447",
"lastModified" : "2026-08-07T13:19:43.894448",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "68c594a2-1f63-4dc2-858b-12cf02759e19",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/b5e7cbed-2df0-4033-9ee0-953f2d80d39c/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/68c594a2-1f63-4dc2-858b-12cf02759e19/comments/b5e7cbed-2df0-4033-9ee0-953f2d80d39c",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/b5e7cbed-2df0-4033-9ee0-953f2d80d39c",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/b5e7cbed-2df0-4033-9ee0-953f2d80d39c"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/b5e7cbed-2df0-4033-9ee0-953f2d80d39c/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/b5e7cbed-2df0-4033-9ee0-953f2d80d39c",
"type" : "POST"
}
}
}, {
"id" : "341d7d05-cfe8-4257-976c-1af9e26a49f5",
"message" : "SIT-generated reply Pesho [2026-08-07T13:19:43.709334495] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-08-07T13:19:43.763292",
"lastModified" : "2026-08-07T13:19:43.763293",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "68c594a2-1f63-4dc2-858b-12cf02759e19",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/341d7d05-cfe8-4257-976c-1af9e26a49f5/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/68c594a2-1f63-4dc2-858b-12cf02759e19/comments/341d7d05-cfe8-4257-976c-1af9e26a49f5",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/341d7d05-cfe8-4257-976c-1af9e26a49f5",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/341d7d05-cfe8-4257-976c-1af9e26a49f5"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/341d7d05-cfe8-4257-976c-1af9e26a49f5/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/341d7d05-cfe8-4257-976c-1af9e26a49f5",
"type" : "POST"
}
}
}, {
"id" : "235bc2d7-78f7-4b65-887d-3f1580641e87",
"message" : "SIT-generated reply Pesho [2026-08-07T13:19:42.252725205] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-08-07T13:19:42.302358",
"lastModified" : "2026-08-07T13:19:42.302358",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 3,
"datasetId" : "68c594a2-1f63-4dc2-858b-12cf02759e19",
"_links" : {
"comments" : {
"href" : "https://app.meltano.com/api/datasets/68c594a2-1f63-4dc2-858b-12cf02759e19/comments?parentId=235bc2d7-78f7-4b65-887d-3f1580641e87",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/68c594a2-1f63-4dc2-858b-12cf02759e19/comments/235bc2d7-78f7-4b65-887d-3f1580641e87",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/235bc2d7-78f7-4b65-887d-3f1580641e87",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/235bc2d7-78f7-4b65-887d-3f1580641e87"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/235bc2d7-78f7-4b65-887d-3f1580641e87/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/235bc2d7-78f7-4b65-887d-3f1580641e87",
"type" : "POST"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/datasets/68c594a2-1f63-4dc2-858b-12cf02759e19/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/76d3e2c4-fa4a-4629-a784-1b7377ddbdef' -i -X GET
import requests
url = "https://app.meltano.com:443/api/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Comment with HAL links.
{
"id" : "76d3e2c4-fa4a-4629-a784-1b7377ddbdef",
"message" : "SIT-generated reply Pesho [2026-08-07T13:19:45.021382858] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-08-07T13:19:45.0685",
"lastModified" : "2026-08-07T13:19:45.068501",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "68c594a2-1f63-4dc2-858b-12cf02759e19",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/68c594a2-1f63-4dc2-858b-12cf02759e19/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef",
"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/76d3e2c4-fa4a-4629-a784-1b7377ddbdef/history' -i -X GET
import requests
url = "https://app.meltano.com:443/api/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef/history"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
[ {
"lastModified" : "2026-08-07T13:19:45.078",
"message" : "SIT-generated reply Pesho [2026-08-07T13:19:45.021382858] to ",
"editVersion" : "1289098"
}, {
"lastModified" : "2026-08-07T13:19:45.256",
"message" : "SIT-generated reply Pesho [2026-08-07T13:19:45.201204182] to ",
"editVersion" : "1289099"
} ]
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/68c594a2-1f63-4dc2-858b-12cf02759e19/comments?parentId=235bc2d7-78f7-4b65-887d-3f1580641e87' -i -X GET
import requests
url = "https://app.meltano.com:443/api/datasets/68c594a2-1f63-4dc2-858b-12cf02759e19/comments?parentId=235bc2d7-78f7-4b65-887d-3f1580641e87"
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" : "f7a2efc3-50c4-435c-a660-83840f1b2281",
"message" : "SIT-generated reply Pesho [2026-08-07T13:19:43.016571578] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-08-07T13:19:43.066576",
"lastModified" : "2026-08-07T13:19:43.066577",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "68c594a2-1f63-4dc2-858b-12cf02759e19",
"parentId" : "235bc2d7-78f7-4b65-887d-3f1580641e87",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/f7a2efc3-50c4-435c-a660-83840f1b2281/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/68c594a2-1f63-4dc2-858b-12cf02759e19/comments/f7a2efc3-50c4-435c-a660-83840f1b2281",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/f7a2efc3-50c4-435c-a660-83840f1b2281",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/f7a2efc3-50c4-435c-a660-83840f1b2281"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/f7a2efc3-50c4-435c-a660-83840f1b2281/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/f7a2efc3-50c4-435c-a660-83840f1b2281",
"type" : "POST"
}
}
}, {
"id" : "ffb1549f-321a-4b35-9995-eff6f302a592",
"message" : "SIT-generated reply Pesho [2026-08-07T13:19:42.880522196] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-08-07T13:19:42.928808",
"lastModified" : "2026-08-07T13:19:42.928809",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "68c594a2-1f63-4dc2-858b-12cf02759e19",
"parentId" : "235bc2d7-78f7-4b65-887d-3f1580641e87",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/ffb1549f-321a-4b35-9995-eff6f302a592/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/68c594a2-1f63-4dc2-858b-12cf02759e19/comments/ffb1549f-321a-4b35-9995-eff6f302a592",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/ffb1549f-321a-4b35-9995-eff6f302a592",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/ffb1549f-321a-4b35-9995-eff6f302a592"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/ffb1549f-321a-4b35-9995-eff6f302a592/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/ffb1549f-321a-4b35-9995-eff6f302a592",
"type" : "POST"
}
}
}, {
"id" : "0fb17690-e14d-47d3-9899-362a22b3df7c",
"message" : "SIT-generated reply Pesho [2026-08-07T13:19:42.729794545] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-08-07T13:19:42.78084",
"lastModified" : "2026-08-07T13:19:42.78084",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "68c594a2-1f63-4dc2-858b-12cf02759e19",
"parentId" : "235bc2d7-78f7-4b65-887d-3f1580641e87",
"_links" : {
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/68c594a2-1f63-4dc2-858b-12cf02759e19/comments/0fb17690-e14d-47d3-9899-362a22b3df7c",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/0fb17690-e14d-47d3-9899-362a22b3df7c",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/0fb17690-e14d-47d3-9899-362a22b3df7c"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/0fb17690-e14d-47d3-9899-362a22b3df7c/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/0fb17690-e14d-47d3-9899-362a22b3df7c",
"type" : "POST"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/datasets/68c594a2-1f63-4dc2-858b-12cf02759e19/comments?parentId=235bc2d7-78f7-4b65-887d-3f1580641e87&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/68c594a2-1f63-4dc2-858b-12cf02759e19/comments' -i -X POST \
-H 'Content-Type: application/json'
import requests
url = "https://app.meltano.com:443/api/datasets/68c594a2-1f63-4dc2-858b-12cf02759e19/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" : "e91f88e9-c3d8-448d-b350-b347ad7f637c",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-08-07T13:19:44.822916379",
"lastModified" : "2026-08-07T13:19:44.822917349",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "68c594a2-1f63-4dc2-858b-12cf02759e19",
"_links" : {
"create comment" : {
"href" : "https://app.meltano.com/api/datasets/68c594a2-1f63-4dc2-858b-12cf02759e19/comments/e91f88e9-c3d8-448d-b350-b347ad7f637c",
"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/235bc2d7-78f7-4b65-887d-3f1580641e87' -i -X POST \
-H 'Content-Type: application/json'
import requests
url = "https://app.meltano.com:443/api/comments/235bc2d7-78f7-4b65-887d-3f1580641e87"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("POST", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Comment with HAL links.
{
"id" : "d03eb22e-33fb-4bb8-b148-f70e73731506",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-08-07T13:19:44.393223592",
"lastModified" : "2026-08-07T13:19:44.393224554",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "68c594a2-1f63-4dc2-858b-12cf02759e19",
"parentId" : "235bc2d7-78f7-4b65-887d-3f1580641e87",
"_links" : {
"create comment" : {
"href" : "https://app.meltano.com/api/datasets/68c594a2-1f63-4dc2-858b-12cf02759e19/comments/d03eb22e-33fb-4bb8-b148-f70e73731506",
"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-08-07T13:19:44.158153394] to ",
"datasetId" : "68c594a2-1f63-4dc2-858b-12cf02759e19"
}
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.meltano.com:443/api/datasets/68c594a2-1f63-4dc2-858b-12cf02759e19/comments/c285b203-a2c8-4c27-b16a-dfd74e67a489' -i -X PUT \
-H 'Content-Type: application/json' \
-d '{
"message" : "SIT-generated reply Pesho [2026-08-07T13:19:44.158153394] to ",
"datasetId" : "68c594a2-1f63-4dc2-858b-12cf02759e19"
}'
import requests
url = "https://app.meltano.com:443/api/datasets/68c594a2-1f63-4dc2-858b-12cf02759e19/comments/c285b203-a2c8-4c27-b16a-dfd74e67a489"
data = {
"message" : "SIT-generated reply Pesho [2026-08-07T13:19:44.158153394] to ",
"datasetId" : "68c594a2-1f63-4dc2-858b-12cf02759e19"
}
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" : "c285b203-a2c8-4c27-b16a-dfd74e67a489",
"message" : "SIT-generated reply Pesho [2026-08-07T13:19:44.158153394] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-08-07T13:19:44.289980123",
"lastModified" : "2026-08-07T13:19:44.289980696",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "68c594a2-1f63-4dc2-858b-12cf02759e19",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/c285b203-a2c8-4c27-b16a-dfd74e67a489/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/68c594a2-1f63-4dc2-858b-12cf02759e19/comments/c285b203-a2c8-4c27-b16a-dfd74e67a489",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/c285b203-a2c8-4c27-b16a-dfd74e67a489",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/c285b203-a2c8-4c27-b16a-dfd74e67a489"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/c285b203-a2c8-4c27-b16a-dfd74e67a489/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/c285b203-a2c8-4c27-b16a-dfd74e67a489",
"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-08-07T13:19:44.851305293] to "
}
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.meltano.com:443/api/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef' -i -X GET
import requests
url = "https://app.meltano.com:443/api/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Comment with HAL links.
{
"id" : "76d3e2c4-fa4a-4629-a784-1b7377ddbdef",
"message" : "SIT-generated reply Pesho [2026-08-07T13:19:45.021382858] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-08-07T13:19:45.0685",
"lastModified" : "2026-08-07T13:19:45.068501",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "68c594a2-1f63-4dc2-858b-12cf02759e19",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/68c594a2-1f63-4dc2-858b-12cf02759e19/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/76d3e2c4-fa4a-4629-a784-1b7377ddbdef",
"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/235bc2d7-78f7-4b65-887d-3f1580641e87/like' -i -X PUT \
-H 'Content-Type: application/json'
import requests
url = "https://app.meltano.com:443/api/comments/235bc2d7-78f7-4b65-887d-3f1580641e87/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/235bc2d7-78f7-4b65-887d-3f1580641e87/like' -i -X DELETE
import requests
url = "https://app.meltano.com:443/api/comments/235bc2d7-78f7-4b65-887d-3f1580641e87/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/b60ebf05-920a-43de-a0f4-c4a5c1a5d22e' -i -X DELETE
import requests
url = "https://app.meltano.com:443/api/comments/b60ebf05-920a-43de-a0f4-c4a5c1a5d22e"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("DELETE", url, headers=headers)
print(response.text.encode('utf8'))
Response
204 No Content
No response body provided.