curl --request GET \
--url https://app2.freyavoice.ai/api/v2/problems/{problemId}/comments \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"message": "<string>",
"result": {
"success": true,
"comments": [
{
"id": "<string>",
"problemId": "<string>",
"authorId": "<string>",
"content": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"authorName": "<string>"
}
]
}
}
}Returns all comments for a problem.
curl --request GET \
--url https://app2.freyavoice.ai/api/v2/problems/{problemId}/comments \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"message": "<string>",
"result": {
"success": true,
"comments": [
{
"id": "<string>",
"problemId": "<string>",
"authorId": "<string>",
"content": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"authorName": "<string>"
}
]
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Problem ID
1Workspace ID
1