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" : "5242c181-aadf-4714-9154-d2646ea7d706",
"message" : "SIT-generated reply Pesho [2026-09-14T05:57:10.829010444] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-14T05:57:10.88255",
"lastModified" : "2026-09-14T05:57:10.88255",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "7caa5be4-eafd-4fad-b9ca-8aa43d5714eb",
"_links" : {
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/comments/5242c181-aadf-4714-9154-d2646ea7d706",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/5242c181-aadf-4714-9154-d2646ea7d706",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/5242c181-aadf-4714-9154-d2646ea7d706"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/5242c181-aadf-4714-9154-d2646ea7d706/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/5242c181-aadf-4714-9154-d2646ea7d706",
"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/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/comments' -i -X GET
import requests
url = "https://app.meltano.com:443/api/datasets/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/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" : "ce10d790-6ae2-4bc5-93fb-084239624838",
"message" : "SIT-generated reply Pesho [2026-09-14T05:57:09.705301681] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-14T05:57:09.758605",
"lastModified" : "2026-09-14T05:57:09.758607",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "7caa5be4-eafd-4fad-b9ca-8aa43d5714eb",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/ce10d790-6ae2-4bc5-93fb-084239624838/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/comments/ce10d790-6ae2-4bc5-93fb-084239624838",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/ce10d790-6ae2-4bc5-93fb-084239624838",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/ce10d790-6ae2-4bc5-93fb-084239624838"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/ce10d790-6ae2-4bc5-93fb-084239624838/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/ce10d790-6ae2-4bc5-93fb-084239624838",
"type" : "POST"
}
}
}, {
"id" : "52d82702-9192-44ec-9027-bc60ba5616b6",
"message" : "SIT-generated reply Pesho [2026-09-14T05:57:09.546466639] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-14T05:57:09.609446",
"lastModified" : "2026-09-14T05:57:09.609447",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "7caa5be4-eafd-4fad-b9ca-8aa43d5714eb",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/52d82702-9192-44ec-9027-bc60ba5616b6/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/comments/52d82702-9192-44ec-9027-bc60ba5616b6",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/52d82702-9192-44ec-9027-bc60ba5616b6",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/52d82702-9192-44ec-9027-bc60ba5616b6"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/52d82702-9192-44ec-9027-bc60ba5616b6/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/52d82702-9192-44ec-9027-bc60ba5616b6",
"type" : "POST"
}
}
}, {
"id" : "7401ed40-ee46-4c4a-a241-e43fae594cc1",
"message" : "SIT-generated reply Pesho [2026-09-14T05:57:09.397803570] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-14T05:57:09.456464",
"lastModified" : "2026-09-14T05:57:09.456465",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "7caa5be4-eafd-4fad-b9ca-8aa43d5714eb",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/7401ed40-ee46-4c4a-a241-e43fae594cc1/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/comments/7401ed40-ee46-4c4a-a241-e43fae594cc1",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/7401ed40-ee46-4c4a-a241-e43fae594cc1",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/7401ed40-ee46-4c4a-a241-e43fae594cc1"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/7401ed40-ee46-4c4a-a241-e43fae594cc1/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/7401ed40-ee46-4c4a-a241-e43fae594cc1",
"type" : "POST"
}
}
}, {
"id" : "1934fe2d-1bf0-4ff3-83b5-c196a0a8f919",
"message" : "SIT-generated reply Pesho [2026-09-14T05:57:07.666850029] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-14T05:57:07.724236",
"lastModified" : "2026-09-14T05:57:07.724237",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 3,
"datasetId" : "7caa5be4-eafd-4fad-b9ca-8aa43d5714eb",
"_links" : {
"comments" : {
"href" : "https://app.meltano.com/api/datasets/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/comments?parentId=1934fe2d-1bf0-4ff3-83b5-c196a0a8f919",
"type" : "GET"
},
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/1934fe2d-1bf0-4ff3-83b5-c196a0a8f919/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/comments/1934fe2d-1bf0-4ff3-83b5-c196a0a8f919",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/1934fe2d-1bf0-4ff3-83b5-c196a0a8f919",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/1934fe2d-1bf0-4ff3-83b5-c196a0a8f919"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/1934fe2d-1bf0-4ff3-83b5-c196a0a8f919/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/1934fe2d-1bf0-4ff3-83b5-c196a0a8f919",
"type" : "POST"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/datasets/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/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/5242c181-aadf-4714-9154-d2646ea7d706' -i -X GET
import requests
url = "https://app.meltano.com:443/api/comments/5242c181-aadf-4714-9154-d2646ea7d706"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Comment with HAL links.
{
"id" : "5242c181-aadf-4714-9154-d2646ea7d706",
"message" : "SIT-generated reply Pesho [2026-09-14T05:57:10.829010444] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-14T05:57:10.88255",
"lastModified" : "2026-09-14T05:57:10.88255",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "7caa5be4-eafd-4fad-b9ca-8aa43d5714eb",
"_links" : {
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/comments/5242c181-aadf-4714-9154-d2646ea7d706",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/5242c181-aadf-4714-9154-d2646ea7d706",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/5242c181-aadf-4714-9154-d2646ea7d706"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/5242c181-aadf-4714-9154-d2646ea7d706/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/5242c181-aadf-4714-9154-d2646ea7d706",
"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/5242c181-aadf-4714-9154-d2646ea7d706/history' -i -X GET
import requests
url = "https://app.meltano.com:443/api/comments/5242c181-aadf-4714-9154-d2646ea7d706/history"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
[ {
"lastModified" : "2026-09-14T05:57:10.895",
"message" : "SIT-generated reply Pesho [2026-09-14T05:57:10.829010444] to ",
"editVersion" : "1608041"
}, {
"lastModified" : "2026-09-14T05:57:11.065",
"message" : "SIT-generated reply Pesho [2026-09-14T05:57:10.995739857] to ",
"editVersion" : "1608042"
} ]
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/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/comments?parentId=1934fe2d-1bf0-4ff3-83b5-c196a0a8f919' -i -X GET
import requests
url = "https://app.meltano.com:443/api/datasets/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/comments?parentId=1934fe2d-1bf0-4ff3-83b5-c196a0a8f919"
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" : "2772d5bc-c4f9-478e-bf94-e9d1b0819b03",
"message" : "SIT-generated reply Pesho [2026-09-14T05:57:08.597469532] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-14T05:57:08.64979",
"lastModified" : "2026-09-14T05:57:08.649791",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "7caa5be4-eafd-4fad-b9ca-8aa43d5714eb",
"parentId" : "1934fe2d-1bf0-4ff3-83b5-c196a0a8f919",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/2772d5bc-c4f9-478e-bf94-e9d1b0819b03/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/comments/2772d5bc-c4f9-478e-bf94-e9d1b0819b03",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/2772d5bc-c4f9-478e-bf94-e9d1b0819b03",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/2772d5bc-c4f9-478e-bf94-e9d1b0819b03"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/2772d5bc-c4f9-478e-bf94-e9d1b0819b03/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/2772d5bc-c4f9-478e-bf94-e9d1b0819b03",
"type" : "POST"
}
}
}, {
"id" : "02e19f6c-6eae-4044-84a3-86837ead18fa",
"message" : "SIT-generated reply Pesho [2026-09-14T05:57:08.421931570] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-14T05:57:08.493254",
"lastModified" : "2026-09-14T05:57:08.493255",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "7caa5be4-eafd-4fad-b9ca-8aa43d5714eb",
"parentId" : "1934fe2d-1bf0-4ff3-83b5-c196a0a8f919",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/02e19f6c-6eae-4044-84a3-86837ead18fa/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/comments/02e19f6c-6eae-4044-84a3-86837ead18fa",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/02e19f6c-6eae-4044-84a3-86837ead18fa",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/02e19f6c-6eae-4044-84a3-86837ead18fa"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/02e19f6c-6eae-4044-84a3-86837ead18fa/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/02e19f6c-6eae-4044-84a3-86837ead18fa",
"type" : "POST"
}
}
}, {
"id" : "152b1995-42d7-4541-9044-b28a2f360a1a",
"message" : "SIT-generated reply Pesho [2026-09-14T05:57:08.268217434] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-14T05:57:08.3225",
"lastModified" : "2026-09-14T05:57:08.322501",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "7caa5be4-eafd-4fad-b9ca-8aa43d5714eb",
"parentId" : "1934fe2d-1bf0-4ff3-83b5-c196a0a8f919",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/152b1995-42d7-4541-9044-b28a2f360a1a/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/comments/152b1995-42d7-4541-9044-b28a2f360a1a",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/152b1995-42d7-4541-9044-b28a2f360a1a",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/152b1995-42d7-4541-9044-b28a2f360a1a"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/152b1995-42d7-4541-9044-b28a2f360a1a/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/152b1995-42d7-4541-9044-b28a2f360a1a",
"type" : "POST"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/datasets/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/comments?parentId=1934fe2d-1bf0-4ff3-83b5-c196a0a8f919&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/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/comments' -i -X POST \
-H 'Content-Type: application/json'
import requests
url = "https://app.meltano.com:443/api/datasets/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/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" : "e6258f98-d807-422b-9d03-062a4ddd7247",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-14T05:57:10.57249384",
"lastModified" : "2026-09-14T05:57:10.572494451",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "7caa5be4-eafd-4fad-b9ca-8aa43d5714eb",
"_links" : {
"create comment" : {
"href" : "https://app.meltano.com/api/datasets/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/comments/e6258f98-d807-422b-9d03-062a4ddd7247",
"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/1934fe2d-1bf0-4ff3-83b5-c196a0a8f919' -i -X POST \
-H 'Content-Type: application/json'
import requests
url = "https://app.meltano.com:443/api/comments/1934fe2d-1bf0-4ff3-83b5-c196a0a8f919"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("POST", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Comment with HAL links.
{
"id" : "f5dbb32f-c139-49cd-a27f-5e4fbc299f7c",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-14T05:57:10.130392022",
"lastModified" : "2026-09-14T05:57:10.130392881",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "7caa5be4-eafd-4fad-b9ca-8aa43d5714eb",
"parentId" : "1934fe2d-1bf0-4ff3-83b5-c196a0a8f919",
"_links" : {
"create comment" : {
"href" : "https://app.meltano.com/api/datasets/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/comments/f5dbb32f-c139-49cd-a27f-5e4fbc299f7c",
"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-14T05:57:09.892554685] to ",
"datasetId" : "7caa5be4-eafd-4fad-b9ca-8aa43d5714eb"
}
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.meltano.com:443/api/datasets/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/comments/a5d5ae0e-7d02-4e38-9182-2195d161b5e8' -i -X PUT \
-H 'Content-Type: application/json' \
-d '{
"message" : "SIT-generated reply Pesho [2026-09-14T05:57:09.892554685] to ",
"datasetId" : "7caa5be4-eafd-4fad-b9ca-8aa43d5714eb"
}'
import requests
url = "https://app.meltano.com:443/api/datasets/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/comments/a5d5ae0e-7d02-4e38-9182-2195d161b5e8"
data = {
"message" : "SIT-generated reply Pesho [2026-09-14T05:57:09.892554685] to ",
"datasetId" : "7caa5be4-eafd-4fad-b9ca-8aa43d5714eb"
}
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" : "a5d5ae0e-7d02-4e38-9182-2195d161b5e8",
"message" : "SIT-generated reply Pesho [2026-09-14T05:57:09.892554685] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-14T05:57:10.023826044",
"lastModified" : "2026-09-14T05:57:10.023827007",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "7caa5be4-eafd-4fad-b9ca-8aa43d5714eb",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/a5d5ae0e-7d02-4e38-9182-2195d161b5e8/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/comments/a5d5ae0e-7d02-4e38-9182-2195d161b5e8",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/a5d5ae0e-7d02-4e38-9182-2195d161b5e8",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/a5d5ae0e-7d02-4e38-9182-2195d161b5e8"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/a5d5ae0e-7d02-4e38-9182-2195d161b5e8/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/a5d5ae0e-7d02-4e38-9182-2195d161b5e8",
"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-14T05:57:10.616450709] to "
}
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.meltano.com:443/api/comments/5242c181-aadf-4714-9154-d2646ea7d706' -i -X GET
import requests
url = "https://app.meltano.com:443/api/comments/5242c181-aadf-4714-9154-d2646ea7d706"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Comment with HAL links.
{
"id" : "5242c181-aadf-4714-9154-d2646ea7d706",
"message" : "SIT-generated reply Pesho [2026-09-14T05:57:10.829010444] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-14T05:57:10.88255",
"lastModified" : "2026-09-14T05:57:10.88255",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "7caa5be4-eafd-4fad-b9ca-8aa43d5714eb",
"_links" : {
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/7caa5be4-eafd-4fad-b9ca-8aa43d5714eb/comments/5242c181-aadf-4714-9154-d2646ea7d706",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/5242c181-aadf-4714-9154-d2646ea7d706",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/5242c181-aadf-4714-9154-d2646ea7d706"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/5242c181-aadf-4714-9154-d2646ea7d706/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/5242c181-aadf-4714-9154-d2646ea7d706",
"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/1934fe2d-1bf0-4ff3-83b5-c196a0a8f919/like' -i -X PUT \
-H 'Content-Type: application/json'
import requests
url = "https://app.meltano.com:443/api/comments/1934fe2d-1bf0-4ff3-83b5-c196a0a8f919/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/1934fe2d-1bf0-4ff3-83b5-c196a0a8f919/like' -i -X DELETE
import requests
url = "https://app.meltano.com:443/api/comments/1934fe2d-1bf0-4ff3-83b5-c196a0a8f919/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/73979f02-6e60-4373-b674-7a69ec266cf8' -i -X DELETE
import requests
url = "https://app.meltano.com:443/api/comments/73979f02-6e60-4373-b674-7a69ec266cf8"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("DELETE", url, headers=headers)
print(response.text.encode('utf8'))
Response
204 No Content
No response body provided.