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" : "4009d11b-5137-49e5-8585-c2036c7ce9f0",
"message" : "SIT-generated reply Pesho [2026-07-10T09:58:53.007662385] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-07-10T09:58:53.055803",
"lastModified" : "2026-07-10T09:58:53.055803",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "725eb8bf-7be0-4d5b-9cf0-2e73c0eec583",
"_links" : {
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/comments/4009d11b-5137-49e5-8585-c2036c7ce9f0",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/4009d11b-5137-49e5-8585-c2036c7ce9f0",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/4009d11b-5137-49e5-8585-c2036c7ce9f0"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/4009d11b-5137-49e5-8585-c2036c7ce9f0/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/4009d11b-5137-49e5-8585-c2036c7ce9f0",
"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/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/comments' -i -X GET
import requests
url = "https://app.matatika.com/api/datasets/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/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" : "e9bb31b5-0252-43db-8cfe-a00346c08efd",
"message" : "SIT-generated reply Pesho [2026-07-10T09:58:52.009685292] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-07-10T09:58:52.073248",
"lastModified" : "2026-07-10T09:58:52.073248",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "725eb8bf-7be0-4d5b-9cf0-2e73c0eec583",
"_links" : {
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/comments/e9bb31b5-0252-43db-8cfe-a00346c08efd",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/e9bb31b5-0252-43db-8cfe-a00346c08efd",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/e9bb31b5-0252-43db-8cfe-a00346c08efd"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/e9bb31b5-0252-43db-8cfe-a00346c08efd/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/e9bb31b5-0252-43db-8cfe-a00346c08efd",
"type" : "POST"
}
}
}, {
"id" : "02e42245-79d0-4be8-a0c4-c2dd528d67b8",
"message" : "SIT-generated reply Pesho [2026-07-10T09:58:51.902987932] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-07-10T09:58:51.936176",
"lastModified" : "2026-07-10T09:58:51.936176",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "725eb8bf-7be0-4d5b-9cf0-2e73c0eec583",
"_links" : {
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/comments/02e42245-79d0-4be8-a0c4-c2dd528d67b8",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/02e42245-79d0-4be8-a0c4-c2dd528d67b8",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/02e42245-79d0-4be8-a0c4-c2dd528d67b8"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/02e42245-79d0-4be8-a0c4-c2dd528d67b8/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/02e42245-79d0-4be8-a0c4-c2dd528d67b8",
"type" : "POST"
}
}
}, {
"id" : "ce700d1e-fe8c-444c-8dd3-a8f57b818369",
"message" : "SIT-generated reply Pesho [2026-07-10T09:58:51.735178752] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-07-10T09:58:51.774027",
"lastModified" : "2026-07-10T09:58:51.774027",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "725eb8bf-7be0-4d5b-9cf0-2e73c0eec583",
"_links" : {
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/comments/ce700d1e-fe8c-444c-8dd3-a8f57b818369",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/ce700d1e-fe8c-444c-8dd3-a8f57b818369",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/ce700d1e-fe8c-444c-8dd3-a8f57b818369"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/ce700d1e-fe8c-444c-8dd3-a8f57b818369/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/ce700d1e-fe8c-444c-8dd3-a8f57b818369",
"type" : "POST"
}
}
}, {
"id" : "c2ee988e-dc87-4304-921f-5243f75d0bcd",
"message" : "SIT-generated reply Pesho [2026-07-10T09:58:50.337381706] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-07-10T09:58:50.384607",
"lastModified" : "2026-07-10T09:58:50.384607",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 3,
"datasetId" : "725eb8bf-7be0-4d5b-9cf0-2e73c0eec583",
"_links" : {
"comments" : {
"href" : "https://app.matatika.com/api/datasets/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/comments?parentId=c2ee988e-dc87-4304-921f-5243f75d0bcd",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/comments/c2ee988e-dc87-4304-921f-5243f75d0bcd",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/c2ee988e-dc87-4304-921f-5243f75d0bcd",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/c2ee988e-dc87-4304-921f-5243f75d0bcd"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/c2ee988e-dc87-4304-921f-5243f75d0bcd/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/c2ee988e-dc87-4304-921f-5243f75d0bcd",
"type" : "POST"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/datasets/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/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/4009d11b-5137-49e5-8585-c2036c7ce9f0' -i -X GET
import requests
url = "https://app.matatika.com/api/comments/4009d11b-5137-49e5-8585-c2036c7ce9f0"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Comment with HAL links.
{
"id" : "4009d11b-5137-49e5-8585-c2036c7ce9f0",
"message" : "SIT-generated reply Pesho [2026-07-10T09:58:53.007662385] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-07-10T09:58:53.055803",
"lastModified" : "2026-07-10T09:58:53.055803",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "725eb8bf-7be0-4d5b-9cf0-2e73c0eec583",
"_links" : {
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/comments/4009d11b-5137-49e5-8585-c2036c7ce9f0",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/4009d11b-5137-49e5-8585-c2036c7ce9f0",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/4009d11b-5137-49e5-8585-c2036c7ce9f0"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/4009d11b-5137-49e5-8585-c2036c7ce9f0/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/4009d11b-5137-49e5-8585-c2036c7ce9f0",
"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/4009d11b-5137-49e5-8585-c2036c7ce9f0/history' -i -X GET
import requests
url = "https://app.matatika.com/api/comments/4009d11b-5137-49e5-8585-c2036c7ce9f0/history"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
[ {
"lastModified" : "2026-07-10T09:58:53.059",
"message" : "SIT-generated reply Pesho [2026-07-10T09:58:53.007662385] to ",
"editVersion" : "1148927"
}, {
"lastModified" : "2026-07-10T09:58:53.227",
"message" : "SIT-generated reply Pesho [2026-07-10T09:58:53.179432645] to ",
"editVersion" : "1148928"
} ]
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/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/comments?parentId=c2ee988e-dc87-4304-921f-5243f75d0bcd' -i -X GET
import requests
url = "https://app.matatika.com/api/datasets/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/comments?parentId=c2ee988e-dc87-4304-921f-5243f75d0bcd"
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" : "ec08654f-36e3-4c22-befb-9fc02eb798e8",
"message" : "SIT-generated reply Pesho [2026-07-10T09:58:51.069340908] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-07-10T09:58:51.112793",
"lastModified" : "2026-07-10T09:58:51.112794",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "725eb8bf-7be0-4d5b-9cf0-2e73c0eec583",
"parentId" : "c2ee988e-dc87-4304-921f-5243f75d0bcd",
"_links" : {
"edit-history" : {
"href" : "https://app.matatika.com/api/comments/ec08654f-36e3-4c22-befb-9fc02eb798e8/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/comments/ec08654f-36e3-4c22-befb-9fc02eb798e8",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/ec08654f-36e3-4c22-befb-9fc02eb798e8",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/ec08654f-36e3-4c22-befb-9fc02eb798e8"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/ec08654f-36e3-4c22-befb-9fc02eb798e8/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/ec08654f-36e3-4c22-befb-9fc02eb798e8",
"type" : "POST"
}
}
}, {
"id" : "29c4e732-8071-47ef-9ccf-11d939cf9163",
"message" : "SIT-generated reply Pesho [2026-07-10T09:58:50.958340968] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-07-10T09:58:50.996563",
"lastModified" : "2026-07-10T09:58:50.996563",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "725eb8bf-7be0-4d5b-9cf0-2e73c0eec583",
"parentId" : "c2ee988e-dc87-4304-921f-5243f75d0bcd",
"_links" : {
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/comments/29c4e732-8071-47ef-9ccf-11d939cf9163",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/29c4e732-8071-47ef-9ccf-11d939cf9163",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/29c4e732-8071-47ef-9ccf-11d939cf9163"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/29c4e732-8071-47ef-9ccf-11d939cf9163/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/29c4e732-8071-47ef-9ccf-11d939cf9163",
"type" : "POST"
}
}
}, {
"id" : "68b3153f-0b8d-45d9-b3c7-e4d2bcf87d4c",
"message" : "SIT-generated reply Pesho [2026-07-10T09:58:50.839678442] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-07-10T09:58:50.889176",
"lastModified" : "2026-07-10T09:58:50.889177",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "725eb8bf-7be0-4d5b-9cf0-2e73c0eec583",
"parentId" : "c2ee988e-dc87-4304-921f-5243f75d0bcd",
"_links" : {
"edit-history" : {
"href" : "https://app.matatika.com/api/comments/68b3153f-0b8d-45d9-b3c7-e4d2bcf87d4c/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/comments/68b3153f-0b8d-45d9-b3c7-e4d2bcf87d4c",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/68b3153f-0b8d-45d9-b3c7-e4d2bcf87d4c",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/68b3153f-0b8d-45d9-b3c7-e4d2bcf87d4c"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/68b3153f-0b8d-45d9-b3c7-e4d2bcf87d4c/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/68b3153f-0b8d-45d9-b3c7-e4d2bcf87d4c",
"type" : "POST"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/datasets/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/comments?parentId=c2ee988e-dc87-4304-921f-5243f75d0bcd&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/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/comments' -i -X POST \
-H 'Content-Type: application/json'
import requests
url = "https://app.matatika.com/api/datasets/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/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" : "ff011132-db70-4182-9dc3-4552791f713f",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-07-10T09:58:52.802215114",
"lastModified" : "2026-07-10T09:58:52.802215323",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "725eb8bf-7be0-4d5b-9cf0-2e73c0eec583",
"_links" : {
"create comment" : {
"href" : "https://app.matatika.com/api/datasets/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/comments/ff011132-db70-4182-9dc3-4552791f713f",
"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/c2ee988e-dc87-4304-921f-5243f75d0bcd' -i -X POST \
-H 'Content-Type: application/json'
import requests
url = "https://app.matatika.com/api/comments/c2ee988e-dc87-4304-921f-5243f75d0bcd"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("POST", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Comment with HAL links.
{
"id" : "a8a7dd81-b7ec-48e7-98d3-fc21cd3eb53d",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-07-10T09:58:52.443581514",
"lastModified" : "2026-07-10T09:58:52.443581687",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "725eb8bf-7be0-4d5b-9cf0-2e73c0eec583",
"parentId" : "c2ee988e-dc87-4304-921f-5243f75d0bcd",
"_links" : {
"create comment" : {
"href" : "https://app.matatika.com/api/datasets/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/comments/a8a7dd81-b7ec-48e7-98d3-fc21cd3eb53d",
"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-07-10T09:58:52.220813947] to ",
"datasetId" : "725eb8bf-7be0-4d5b-9cf0-2e73c0eec583"
}
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/datasets/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/comments/70f01607-bedf-4b47-ab4f-f7519d531a85' -i -X PUT \
-H 'Content-Type: application/json' \
-d '{
"message" : "SIT-generated reply Pesho [2026-07-10T09:58:52.220813947] to ",
"datasetId" : "725eb8bf-7be0-4d5b-9cf0-2e73c0eec583"
}'
import requests
url = "https://app.matatika.com/api/datasets/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/comments/70f01607-bedf-4b47-ab4f-f7519d531a85"
data = {
"message" : "SIT-generated reply Pesho [2026-07-10T09:58:52.220813947] to ",
"datasetId" : "725eb8bf-7be0-4d5b-9cf0-2e73c0eec583"
}
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" : "70f01607-bedf-4b47-ab4f-f7519d531a85",
"message" : "SIT-generated reply Pesho [2026-07-10T09:58:52.220813947] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-07-10T09:58:52.350812782",
"lastModified" : "2026-07-10T09:58:52.350812974",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "725eb8bf-7be0-4d5b-9cf0-2e73c0eec583",
"_links" : {
"edit-history" : {
"href" : "https://app.matatika.com/api/comments/70f01607-bedf-4b47-ab4f-f7519d531a85/history",
"type" : "GET"
},
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/comments/70f01607-bedf-4b47-ab4f-f7519d531a85",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/70f01607-bedf-4b47-ab4f-f7519d531a85",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/70f01607-bedf-4b47-ab4f-f7519d531a85"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/70f01607-bedf-4b47-ab4f-f7519d531a85/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/70f01607-bedf-4b47-ab4f-f7519d531a85",
"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-07-10T09:58:52.841943175] to "
}
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/comments/4009d11b-5137-49e5-8585-c2036c7ce9f0' -i -X GET
import requests
url = "https://app.matatika.com/api/comments/4009d11b-5137-49e5-8585-c2036c7ce9f0"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Comment with HAL links.
{
"id" : "4009d11b-5137-49e5-8585-c2036c7ce9f0",
"message" : "SIT-generated reply Pesho [2026-07-10T09:58:53.007662385] to ",
"likeCount" : 0,
"likedByProfiles" : [ ],
"created" : "2026-07-10T09:58:53.055803",
"lastModified" : "2026-07-10T09:58:53.055803",
"from" : {
"id" : "auth0|6a21dc7aa1db2e036a222942",
"name" : "sit+prod@meltano.com",
"handle" : "@sit+prod1"
},
"commentCount" : 0,
"datasetId" : "725eb8bf-7be0-4d5b-9cf0-2e73c0eec583",
"_links" : {
"update comment" : {
"href" : "https://app.matatika.com/api/datasets/725eb8bf-7be0-4d5b-9cf0-2e73c0eec583/comments/4009d11b-5137-49e5-8585-c2036c7ce9f0",
"type" : "PUT"
},
"delete comment" : {
"href" : "https://app.matatika.com/api/comments/4009d11b-5137-49e5-8585-c2036c7ce9f0",
"type" : "DELETE"
},
"self" : {
"href" : "https://app.matatika.com/api/comments/4009d11b-5137-49e5-8585-c2036c7ce9f0"
},
"add like" : {
"href" : "https://app.matatika.com/api/comments/4009d11b-5137-49e5-8585-c2036c7ce9f0/like",
"type" : "PUT"
},
"new reply" : {
"href" : "https://app.matatika.com/api/comments/4009d11b-5137-49e5-8585-c2036c7ce9f0",
"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/c2ee988e-dc87-4304-921f-5243f75d0bcd/like' -i -X PUT \
-H 'Content-Type: application/json'
import requests
url = "https://app.matatika.com/api/comments/c2ee988e-dc87-4304-921f-5243f75d0bcd/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/c2ee988e-dc87-4304-921f-5243f75d0bcd/like' -i -X DELETE
import requests
url = "https://app.matatika.com/api/comments/c2ee988e-dc87-4304-921f-5243f75d0bcd/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/3f033043-04c4-4c92-a6f8-df3928987587' -i -X DELETE
import requests
url = "https://app.matatika.com/api/comments/3f033043-04c4-4c92-a6f8-df3928987587"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("DELETE", url, headers=headers)
print(response.text.encode('utf8'))
Response
204 No Content
No response body provided.