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" : "39af5eea-f552-4630-b608-0dc6410293fe",
"message" : "SIT-generated reply Pesho [2026-06-10T07:14:27.302126373] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-06-10T07:14:27.329583",
"lastModified" : "2026-06-10T07:14:27.329584",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "47f909d9-5ac3-46cd-aa1c-909d5d07bf75",
"_links" : {
"edit-history" : {
"href" : "https://app.matatika.com/api/comments/39af5eea-f552-4630-b608-0dc6410293fe/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/comments/39af5eea-f552-4630-b608-0dc6410293fe",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/39af5eea-f552-4630-b608-0dc6410293fe",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/39af5eea-f552-4630-b608-0dc6410293fe"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/39af5eea-f552-4630-b608-0dc6410293fe/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/39af5eea-f552-4630-b608-0dc6410293fe",
"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.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/comments' -i -X GET
import requests
url = "https://app.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/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" : "617c2470-e959-48ca-a552-5aa7a2b44d3f",
"message" : "SIT-generated reply Pesho [2026-06-10T07:14:26.672422511] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-06-10T07:14:26.702338",
"lastModified" : "2026-06-10T07:14:26.702338",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "47f909d9-5ac3-46cd-aa1c-909d5d07bf75",
"_links" : {
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/comments/617c2470-e959-48ca-a552-5aa7a2b44d3f",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/617c2470-e959-48ca-a552-5aa7a2b44d3f",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/617c2470-e959-48ca-a552-5aa7a2b44d3f"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/617c2470-e959-48ca-a552-5aa7a2b44d3f/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/617c2470-e959-48ca-a552-5aa7a2b44d3f",
"type" : "POST"
}
}
}, {
"id" : "15cff0b1-61f8-4b78-ba33-a1395fbe79c3",
"message" : "SIT-generated reply Pesho [2026-06-10T07:14:26.516594583] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-06-10T07:14:26.546857",
"lastModified" : "2026-06-10T07:14:26.546857",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "47f909d9-5ac3-46cd-aa1c-909d5d07bf75",
"_links" : {
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/comments/15cff0b1-61f8-4b78-ba33-a1395fbe79c3",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/15cff0b1-61f8-4b78-ba33-a1395fbe79c3",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/15cff0b1-61f8-4b78-ba33-a1395fbe79c3"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/15cff0b1-61f8-4b78-ba33-a1395fbe79c3/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/15cff0b1-61f8-4b78-ba33-a1395fbe79c3",
"type" : "POST"
}
}
}, {
"id" : "55ce2c4d-a578-4fa0-8f37-1edc577b1393",
"message" : "SIT-generated reply Pesho [2026-06-10T07:14:26.437418495] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-06-10T07:14:26.467483",
"lastModified" : "2026-06-10T07:14:26.467483",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "47f909d9-5ac3-46cd-aa1c-909d5d07bf75",
"_links" : {
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/comments/55ce2c4d-a578-4fa0-8f37-1edc577b1393",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/55ce2c4d-a578-4fa0-8f37-1edc577b1393",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/55ce2c4d-a578-4fa0-8f37-1edc577b1393"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/55ce2c4d-a578-4fa0-8f37-1edc577b1393/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/55ce2c4d-a578-4fa0-8f37-1edc577b1393",
"type" : "POST"
}
}
}, {
"id" : "f41befe5-37ff-441f-907f-a0410d2970f2",
"message" : "SIT-generated reply Pesho [2026-06-10T07:14:25.512283972] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-06-10T07:14:25.562187",
"lastModified" : "2026-06-10T07:14:25.562187",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 3,
"datasetId" : "47f909d9-5ac3-46cd-aa1c-909d5d07bf75",
"_links" : {
"comments" : {
"href" : "https://app.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/comments?parentId=f41befe5-37ff-441f-907f-a0410d2970f2",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/comments/f41befe5-37ff-441f-907f-a0410d2970f2",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/f41befe5-37ff-441f-907f-a0410d2970f2",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/f41befe5-37ff-441f-907f-a0410d2970f2"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/f41befe5-37ff-441f-907f-a0410d2970f2/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/f41befe5-37ff-441f-907f-a0410d2970f2",
"type" : "POST"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/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.matatika.com/api/comments/39af5eea-f552-4630-b608-0dc6410293fe' -i -X GET
import requests
url = "https://app.matatika.com/api/comments/39af5eea-f552-4630-b608-0dc6410293fe"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Comment with HAL links.
{
"id" : "39af5eea-f552-4630-b608-0dc6410293fe",
"message" : "SIT-generated reply Pesho [2026-06-10T07:14:27.302126373] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-06-10T07:14:27.329583",
"lastModified" : "2026-06-10T07:14:27.329584",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "47f909d9-5ac3-46cd-aa1c-909d5d07bf75",
"_links" : {
"edit-history" : {
"href" : "https://app.matatika.com/api/comments/39af5eea-f552-4630-b608-0dc6410293fe/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/comments/39af5eea-f552-4630-b608-0dc6410293fe",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/39af5eea-f552-4630-b608-0dc6410293fe",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/39af5eea-f552-4630-b608-0dc6410293fe"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/39af5eea-f552-4630-b608-0dc6410293fe/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/39af5eea-f552-4630-b608-0dc6410293fe",
"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.matatika.com/api/comments/39af5eea-f552-4630-b608-0dc6410293fe/history' -i -X GET
import requests
url = "https://app.matatika.com/api/comments/39af5eea-f552-4630-b608-0dc6410293fe/history"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
[ {
"lastModified" : "2026-06-10T07:14:27.332",
"message" : "SIT-generated reply Pesho [2026-06-10T07:14:27.302126373] to ",
"editVersion" : "1012971"
}, {
"lastModified" : "2026-06-10T07:14:27.431",
"message" : "SIT-generated reply Pesho [2026-06-10T07:14:27.395932306] to ",
"editVersion" : "1012972"
} ]
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.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/comments?parentId=f41befe5-37ff-441f-907f-a0410d2970f2' -i -X GET
import requests
url = "https://app.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/comments?parentId=f41befe5-37ff-441f-907f-a0410d2970f2"
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" : "8be8a564-ed78-4c8a-b216-b21c406ea8d4",
"message" : "SIT-generated reply Pesho [2026-06-10T07:14:26.007382155] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-06-10T07:14:26.040042",
"lastModified" : "2026-06-10T07:14:26.040042",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "47f909d9-5ac3-46cd-aa1c-909d5d07bf75",
"parentId" : "f41befe5-37ff-441f-907f-a0410d2970f2",
"_links" : {
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/comments/8be8a564-ed78-4c8a-b216-b21c406ea8d4",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/8be8a564-ed78-4c8a-b216-b21c406ea8d4",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/8be8a564-ed78-4c8a-b216-b21c406ea8d4"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/8be8a564-ed78-4c8a-b216-b21c406ea8d4/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/8be8a564-ed78-4c8a-b216-b21c406ea8d4",
"type" : "POST"
}
}
}, {
"id" : "687ff598-401d-4517-be53-e8f91cb1ed5a",
"message" : "SIT-generated reply Pesho [2026-06-10T07:14:25.928091351] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-06-10T07:14:25.961408",
"lastModified" : "2026-06-10T07:14:25.961408",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "47f909d9-5ac3-46cd-aa1c-909d5d07bf75",
"parentId" : "f41befe5-37ff-441f-907f-a0410d2970f2",
"_links" : {
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/comments/687ff598-401d-4517-be53-e8f91cb1ed5a",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/687ff598-401d-4517-be53-e8f91cb1ed5a",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/687ff598-401d-4517-be53-e8f91cb1ed5a"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/687ff598-401d-4517-be53-e8f91cb1ed5a/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/687ff598-401d-4517-be53-e8f91cb1ed5a",
"type" : "POST"
}
}
}, {
"id" : "b46a4d6d-d738-4adc-a00d-6c57a85f2896",
"message" : "SIT-generated reply Pesho [2026-06-10T07:14:25.846230509] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-06-10T07:14:25.878311",
"lastModified" : "2026-06-10T07:14:25.878311",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "47f909d9-5ac3-46cd-aa1c-909d5d07bf75",
"parentId" : "f41befe5-37ff-441f-907f-a0410d2970f2",
"_links" : {
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/comments/b46a4d6d-d738-4adc-a00d-6c57a85f2896",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/b46a4d6d-d738-4adc-a00d-6c57a85f2896",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/b46a4d6d-d738-4adc-a00d-6c57a85f2896"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/b46a4d6d-d738-4adc-a00d-6c57a85f2896/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/b46a4d6d-d738-4adc-a00d-6c57a85f2896",
"type" : "POST"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/comments?parentId=f41befe5-37ff-441f-907f-a0410d2970f2&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.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/comments' -i -X POST \
-H 'Content-Type: application/json'
import requests
url = "https://app.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/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" : "1a30f7ea-e474-4173-93de-9145c2e24663",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-06-10T07:14:27.166322197",
"lastModified" : "2026-06-10T07:14:27.1663226",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "47f909d9-5ac3-46cd-aa1c-909d5d07bf75",
"_links" : {
"create comment" : {
"href" : "https://app.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/comments/1a30f7ea-e474-4173-93de-9145c2e24663",
"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.matatika.com/api/comments/f41befe5-37ff-441f-907f-a0410d2970f2' -i -X POST \
-H 'Content-Type: application/json'
import requests
url = "https://app.matatika.com/api/comments/f41befe5-37ff-441f-907f-a0410d2970f2"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("POST", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Comment with HAL links.
{
"id" : "8c913983-9966-41c0-9972-08d3cfb42168",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-06-10T07:14:26.909353958",
"lastModified" : "2026-06-10T07:14:26.909354161",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "47f909d9-5ac3-46cd-aa1c-909d5d07bf75",
"parentId" : "f41befe5-37ff-441f-907f-a0410d2970f2",
"_links" : {
"create comment" : {
"href" : "https://app.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/comments/8c913983-9966-41c0-9972-08d3cfb42168",
"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-06-10T07:14:26.770268011] to ",
"datasetId" : "47f909d9-5ac3-46cd-aa1c-909d5d07bf75"
}
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/comments/ff08105c-d516-44e1-8f9d-d9f2c0b3db32' -i -X PUT \
-H 'Content-Type: application/json' \
-d '{
"message" : "SIT-generated reply Pesho [2026-06-10T07:14:26.770268011] to ",
"datasetId" : "47f909d9-5ac3-46cd-aa1c-909d5d07bf75"
}'
import requests
url = "https://app.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/comments/ff08105c-d516-44e1-8f9d-d9f2c0b3db32"
data = {
"message" : "SIT-generated reply Pesho [2026-06-10T07:14:26.770268011] to ",
"datasetId" : "47f909d9-5ac3-46cd-aa1c-909d5d07bf75"
}
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" : "ff08105c-d516-44e1-8f9d-d9f2c0b3db32",
"message" : "SIT-generated reply Pesho [2026-06-10T07:14:26.770268011] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-06-10T07:14:26.844926918",
"lastModified" : "2026-06-10T07:14:26.84492725",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "47f909d9-5ac3-46cd-aa1c-909d5d07bf75",
"_links" : {
"edit-history" : {
"href" : "https://app.matatika.com/api/comments/ff08105c-d516-44e1-8f9d-d9f2c0b3db32/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/comments/ff08105c-d516-44e1-8f9d-d9f2c0b3db32",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/ff08105c-d516-44e1-8f9d-d9f2c0b3db32",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/ff08105c-d516-44e1-8f9d-d9f2c0b3db32"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/ff08105c-d516-44e1-8f9d-d9f2c0b3db32/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/ff08105c-d516-44e1-8f9d-d9f2c0b3db32",
"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-06-10T07:14:27.186413612] to "
}
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/comments/39af5eea-f552-4630-b608-0dc6410293fe' -i -X GET
import requests
url = "https://app.matatika.com/api/comments/39af5eea-f552-4630-b608-0dc6410293fe"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Comment with HAL links.
{
"id" : "39af5eea-f552-4630-b608-0dc6410293fe",
"message" : "SIT-generated reply Pesho [2026-06-10T07:14:27.302126373] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-06-10T07:14:27.329583",
"lastModified" : "2026-06-10T07:14:27.329584",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "47f909d9-5ac3-46cd-aa1c-909d5d07bf75",
"_links" : {
"edit-history" : {
"href" : "https://app.matatika.com/api/comments/39af5eea-f552-4630-b608-0dc6410293fe/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/47f909d9-5ac3-46cd-aa1c-909d5d07bf75/comments/39af5eea-f552-4630-b608-0dc6410293fe",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/39af5eea-f552-4630-b608-0dc6410293fe",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/39af5eea-f552-4630-b608-0dc6410293fe"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/39af5eea-f552-4630-b608-0dc6410293fe/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/39af5eea-f552-4630-b608-0dc6410293fe",
"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.matatika.com/api/comments/f41befe5-37ff-441f-907f-a0410d2970f2/like' -i -X PUT \
-H 'Content-Type: application/json'
import requests
url = "https://app.matatika.com/api/comments/f41befe5-37ff-441f-907f-a0410d2970f2/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.matatika.com/api/comments/f41befe5-37ff-441f-907f-a0410d2970f2/like' -i -X DELETE
import requests
url = "https://app.matatika.com/api/comments/f41befe5-37ff-441f-907f-a0410d2970f2/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.matatika.com/api/comments/9027099c-1e32-42da-92b5-cbe6c6506aa0' -i -X DELETE
import requests
url = "https://app.matatika.com/api/comments/9027099c-1e32-42da-92b5-cbe6c6506aa0"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("DELETE", url, headers=headers)
print(response.text.encode('utf8'))
Response
204 No Content
No response body provided.