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" : "68f35951-8bd8-4aa2-830e-76f798b29044",
"message" : "SIT-generated reply Pesho [2026-09-02T09:59:18.677352615] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-02T09:59:18.727827",
"lastModified" : "2026-09-02T09:59:18.727827",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "eff036cf-98bf-4359-8ad2-da949fdff508",
"_links" : {
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/eff036cf-98bf-4359-8ad2-da949fdff508/comments/68f35951-8bd8-4aa2-830e-76f798b29044",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/68f35951-8bd8-4aa2-830e-76f798b29044",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/68f35951-8bd8-4aa2-830e-76f798b29044"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/68f35951-8bd8-4aa2-830e-76f798b29044/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/68f35951-8bd8-4aa2-830e-76f798b29044",
"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/eff036cf-98bf-4359-8ad2-da949fdff508/comments' -i -X GET
import requests
url = "https://app.meltano.com:443/api/datasets/eff036cf-98bf-4359-8ad2-da949fdff508/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" : "c91b46c7-0a05-4650-8b6b-b623559430a1",
"message" : "SIT-generated reply Pesho [2026-09-02T09:59:17.509794898] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-02T09:59:17.558498",
"lastModified" : "2026-09-02T09:59:17.558499",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "eff036cf-98bf-4359-8ad2-da949fdff508",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/c91b46c7-0a05-4650-8b6b-b623559430a1/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/eff036cf-98bf-4359-8ad2-da949fdff508/comments/c91b46c7-0a05-4650-8b6b-b623559430a1",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/c91b46c7-0a05-4650-8b6b-b623559430a1",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/c91b46c7-0a05-4650-8b6b-b623559430a1"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/c91b46c7-0a05-4650-8b6b-b623559430a1/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/c91b46c7-0a05-4650-8b6b-b623559430a1",
"type" : "POST"
}
}
}, {
"id" : "76f7b372-5099-4ed1-bd1a-2b2739b28b2e",
"message" : "SIT-generated reply Pesho [2026-09-02T09:59:17.344730511] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-02T09:59:17.397261",
"lastModified" : "2026-09-02T09:59:17.397262",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "eff036cf-98bf-4359-8ad2-da949fdff508",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/76f7b372-5099-4ed1-bd1a-2b2739b28b2e/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/eff036cf-98bf-4359-8ad2-da949fdff508/comments/76f7b372-5099-4ed1-bd1a-2b2739b28b2e",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/76f7b372-5099-4ed1-bd1a-2b2739b28b2e",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/76f7b372-5099-4ed1-bd1a-2b2739b28b2e"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/76f7b372-5099-4ed1-bd1a-2b2739b28b2e/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/76f7b372-5099-4ed1-bd1a-2b2739b28b2e",
"type" : "POST"
}
}
}, {
"id" : "7b0e179a-10fd-4d2d-b88f-8542884cf021",
"message" : "SIT-generated reply Pesho [2026-09-02T09:59:17.203648209] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-02T09:59:17.256202",
"lastModified" : "2026-09-02T09:59:17.256203",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "eff036cf-98bf-4359-8ad2-da949fdff508",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/7b0e179a-10fd-4d2d-b88f-8542884cf021/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/eff036cf-98bf-4359-8ad2-da949fdff508/comments/7b0e179a-10fd-4d2d-b88f-8542884cf021",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/7b0e179a-10fd-4d2d-b88f-8542884cf021",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/7b0e179a-10fd-4d2d-b88f-8542884cf021"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/7b0e179a-10fd-4d2d-b88f-8542884cf021/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/7b0e179a-10fd-4d2d-b88f-8542884cf021",
"type" : "POST"
}
}
}, {
"id" : "3d39c751-6599-41c4-9d80-9f15af1b0dc9",
"message" : "SIT-generated reply Pesho [2026-09-02T09:59:15.674454522] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-02T09:59:15.75623",
"lastModified" : "2026-09-02T09:59:15.756231",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 3,
"datasetId" : "eff036cf-98bf-4359-8ad2-da949fdff508",
"_links" : {
"comments" : {
"href" : "https://app.meltano.com/api/datasets/eff036cf-98bf-4359-8ad2-da949fdff508/comments?parentId=3d39c751-6599-41c4-9d80-9f15af1b0dc9",
"type" : "GET"
},
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/3d39c751-6599-41c4-9d80-9f15af1b0dc9/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/eff036cf-98bf-4359-8ad2-da949fdff508/comments/3d39c751-6599-41c4-9d80-9f15af1b0dc9",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/3d39c751-6599-41c4-9d80-9f15af1b0dc9",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/3d39c751-6599-41c4-9d80-9f15af1b0dc9"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/3d39c751-6599-41c4-9d80-9f15af1b0dc9/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/3d39c751-6599-41c4-9d80-9f15af1b0dc9",
"type" : "POST"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/datasets/eff036cf-98bf-4359-8ad2-da949fdff508/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/68f35951-8bd8-4aa2-830e-76f798b29044' -i -X GET
import requests
url = "https://app.meltano.com:443/api/comments/68f35951-8bd8-4aa2-830e-76f798b29044"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Comment with HAL links.
{
"id" : "68f35951-8bd8-4aa2-830e-76f798b29044",
"message" : "SIT-generated reply Pesho [2026-09-02T09:59:18.677352615] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-02T09:59:18.727827",
"lastModified" : "2026-09-02T09:59:18.727827",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "eff036cf-98bf-4359-8ad2-da949fdff508",
"_links" : {
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/eff036cf-98bf-4359-8ad2-da949fdff508/comments/68f35951-8bd8-4aa2-830e-76f798b29044",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/68f35951-8bd8-4aa2-830e-76f798b29044",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/68f35951-8bd8-4aa2-830e-76f798b29044"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/68f35951-8bd8-4aa2-830e-76f798b29044/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/68f35951-8bd8-4aa2-830e-76f798b29044",
"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/68f35951-8bd8-4aa2-830e-76f798b29044/history' -i -X GET
import requests
url = "https://app.meltano.com:443/api/comments/68f35951-8bd8-4aa2-830e-76f798b29044/history"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
[ {
"lastModified" : "2026-09-02T09:59:18.736",
"message" : "SIT-generated reply Pesho [2026-09-02T09:59:18.677352615] to ",
"editVersion" : "1488304"
}, {
"lastModified" : "2026-09-02T09:59:18.919",
"message" : "SIT-generated reply Pesho [2026-09-02T09:59:18.860483906] to ",
"editVersion" : "1488305"
} ]
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/eff036cf-98bf-4359-8ad2-da949fdff508/comments?parentId=3d39c751-6599-41c4-9d80-9f15af1b0dc9' -i -X GET
import requests
url = "https://app.meltano.com:443/api/datasets/eff036cf-98bf-4359-8ad2-da949fdff508/comments?parentId=3d39c751-6599-41c4-9d80-9f15af1b0dc9"
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" : "0975c084-b878-4675-bc45-d0bad5f9f39b",
"message" : "SIT-generated reply Pesho [2026-09-02T09:59:16.481467494] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-02T09:59:16.527596",
"lastModified" : "2026-09-02T09:59:16.527597",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "eff036cf-98bf-4359-8ad2-da949fdff508",
"parentId" : "3d39c751-6599-41c4-9d80-9f15af1b0dc9",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/0975c084-b878-4675-bc45-d0bad5f9f39b/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/eff036cf-98bf-4359-8ad2-da949fdff508/comments/0975c084-b878-4675-bc45-d0bad5f9f39b",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/0975c084-b878-4675-bc45-d0bad5f9f39b",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/0975c084-b878-4675-bc45-d0bad5f9f39b"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/0975c084-b878-4675-bc45-d0bad5f9f39b/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/0975c084-b878-4675-bc45-d0bad5f9f39b",
"type" : "POST"
}
}
}, {
"id" : "4abf0faa-7783-4eea-a558-198659a76292",
"message" : "SIT-generated reply Pesho [2026-09-02T09:59:16.345367047] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-02T09:59:16.399068",
"lastModified" : "2026-09-02T09:59:16.399069",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "eff036cf-98bf-4359-8ad2-da949fdff508",
"parentId" : "3d39c751-6599-41c4-9d80-9f15af1b0dc9",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/4abf0faa-7783-4eea-a558-198659a76292/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/eff036cf-98bf-4359-8ad2-da949fdff508/comments/4abf0faa-7783-4eea-a558-198659a76292",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/4abf0faa-7783-4eea-a558-198659a76292",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/4abf0faa-7783-4eea-a558-198659a76292"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/4abf0faa-7783-4eea-a558-198659a76292/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/4abf0faa-7783-4eea-a558-198659a76292",
"type" : "POST"
}
}
}, {
"id" : "a26d4ede-b7ca-4685-9c5b-a1b7ea215092",
"message" : "SIT-generated reply Pesho [2026-09-02T09:59:16.209009583] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-02T09:59:16.263765",
"lastModified" : "2026-09-02T09:59:16.263766",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "eff036cf-98bf-4359-8ad2-da949fdff508",
"parentId" : "3d39c751-6599-41c4-9d80-9f15af1b0dc9",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/a26d4ede-b7ca-4685-9c5b-a1b7ea215092/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/eff036cf-98bf-4359-8ad2-da949fdff508/comments/a26d4ede-b7ca-4685-9c5b-a1b7ea215092",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/a26d4ede-b7ca-4685-9c5b-a1b7ea215092",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/a26d4ede-b7ca-4685-9c5b-a1b7ea215092"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/a26d4ede-b7ca-4685-9c5b-a1b7ea215092/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/a26d4ede-b7ca-4685-9c5b-a1b7ea215092",
"type" : "POST"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.meltano.com/api/datasets/eff036cf-98bf-4359-8ad2-da949fdff508/comments?parentId=3d39c751-6599-41c4-9d80-9f15af1b0dc9&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/eff036cf-98bf-4359-8ad2-da949fdff508/comments' -i -X POST \
-H 'Content-Type: application/json'
import requests
url = "https://app.meltano.com:443/api/datasets/eff036cf-98bf-4359-8ad2-da949fdff508/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" : "2e395d9c-16bf-40ea-b7bc-a62f73f5bbfc",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-02T09:59:18.439136288",
"lastModified" : "2026-09-02T09:59:18.43913719",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "eff036cf-98bf-4359-8ad2-da949fdff508",
"_links" : {
"create comment" : {
"href" : "https://app.meltano.com/api/datasets/eff036cf-98bf-4359-8ad2-da949fdff508/comments/2e395d9c-16bf-40ea-b7bc-a62f73f5bbfc",
"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/3d39c751-6599-41c4-9d80-9f15af1b0dc9' -i -X POST \
-H 'Content-Type: application/json'
import requests
url = "https://app.meltano.com:443/api/comments/3d39c751-6599-41c4-9d80-9f15af1b0dc9"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("POST", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Comment with HAL links.
{
"id" : "2fbd976d-5720-4d79-9175-cc5fd4cc314c",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-02T09:59:17.949283853",
"lastModified" : "2026-09-02T09:59:17.949284353",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "eff036cf-98bf-4359-8ad2-da949fdff508",
"parentId" : "3d39c751-6599-41c4-9d80-9f15af1b0dc9",
"_links" : {
"create comment" : {
"href" : "https://app.meltano.com/api/datasets/eff036cf-98bf-4359-8ad2-da949fdff508/comments/2fbd976d-5720-4d79-9175-cc5fd4cc314c",
"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-02T09:59:17.697126065] to ",
"datasetId" : "eff036cf-98bf-4359-8ad2-da949fdff508"
}
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.meltano.com:443/api/datasets/eff036cf-98bf-4359-8ad2-da949fdff508/comments/2142e4b9-e787-4904-9045-d82a97d7a57a' -i -X PUT \
-H 'Content-Type: application/json' \
-d '{
"message" : "SIT-generated reply Pesho [2026-09-02T09:59:17.697126065] to ",
"datasetId" : "eff036cf-98bf-4359-8ad2-da949fdff508"
}'
import requests
url = "https://app.meltano.com:443/api/datasets/eff036cf-98bf-4359-8ad2-da949fdff508/comments/2142e4b9-e787-4904-9045-d82a97d7a57a"
data = {
"message" : "SIT-generated reply Pesho [2026-09-02T09:59:17.697126065] to ",
"datasetId" : "eff036cf-98bf-4359-8ad2-da949fdff508"
}
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" : "2142e4b9-e787-4904-9045-d82a97d7a57a",
"message" : "SIT-generated reply Pesho [2026-09-02T09:59:17.697126065] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-02T09:59:17.833305996",
"lastModified" : "2026-09-02T09:59:17.833306945",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "eff036cf-98bf-4359-8ad2-da949fdff508",
"_links" : {
"edit-history" : {
"href" : "https://app.meltano.com/api/comments/2142e4b9-e787-4904-9045-d82a97d7a57a/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/eff036cf-98bf-4359-8ad2-da949fdff508/comments/2142e4b9-e787-4904-9045-d82a97d7a57a",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/2142e4b9-e787-4904-9045-d82a97d7a57a",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/2142e4b9-e787-4904-9045-d82a97d7a57a"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/2142e4b9-e787-4904-9045-d82a97d7a57a/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/2142e4b9-e787-4904-9045-d82a97d7a57a",
"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-02T09:59:18.471260554] to "
}
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.meltano.com:443/api/comments/68f35951-8bd8-4aa2-830e-76f798b29044' -i -X GET
import requests
url = "https://app.meltano.com:443/api/comments/68f35951-8bd8-4aa2-830e-76f798b29044"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Comment with HAL links.
{
"id" : "68f35951-8bd8-4aa2-830e-76f798b29044",
"message" : "SIT-generated reply Pesho [2026-09-02T09:59:18.677352615] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-09-02T09:59:18.727827",
"lastModified" : "2026-09-02T09:59:18.727827",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod"
},
"commentCount" : 0,
"datasetId" : "eff036cf-98bf-4359-8ad2-da949fdff508",
"_links" : {
"update comment" : {
"href" : "https://app.meltano.com/api/datasets/eff036cf-98bf-4359-8ad2-da949fdff508/comments/68f35951-8bd8-4aa2-830e-76f798b29044",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.meltano.com/api/comments/68f35951-8bd8-4aa2-830e-76f798b29044",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.meltano.com/api/comments/68f35951-8bd8-4aa2-830e-76f798b29044"
},
"add like" : {
"href" : "https://app.meltano.com/api/comments/68f35951-8bd8-4aa2-830e-76f798b29044/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.meltano.com/api/comments/68f35951-8bd8-4aa2-830e-76f798b29044",
"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/3d39c751-6599-41c4-9d80-9f15af1b0dc9/like' -i -X PUT \
-H 'Content-Type: application/json'
import requests
url = "https://app.meltano.com:443/api/comments/3d39c751-6599-41c4-9d80-9f15af1b0dc9/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/3d39c751-6599-41c4-9d80-9f15af1b0dc9/like' -i -X DELETE
import requests
url = "https://app.meltano.com:443/api/comments/3d39c751-6599-41c4-9d80-9f15af1b0dc9/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/81c5ba42-e1a3-4f5b-821e-a7a5e45d367f' -i -X DELETE
import requests
url = "https://app.meltano.com:443/api/comments/81c5ba42-e1a3-4f5b-821e-a7a5e45d367f"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("DELETE", url, headers=headers)
print(response.text.encode('utf8'))
Response
204 No Content
No response body provided.