Skip to content

What people said about this case, oldest first

GET
/v1/test-cases/{id}/comments
curl --request GET \
--url https://beta-api.plune.ai/v1/test-cases/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/comments \
--header 'Authorization: Bearer <token>'

B8-team T5 (api.tslistComments, the «Comments · N» section of the case page). The live comments — a deleted one is gone from here for good. Anyone in the project reads them, a reader too; the author is a userId to be named from GET /v1/members. A case in the bin, or one that is not in this project, has no comments to show: the same 404 the case itself answers.

id
required
string format: uuid
X-Plune-Project
string

Which of your projects to act in — an id from GET /v1/projects. Absent, your default project. A project you are not a member of answers 404, the same as one that does not exist. Ignored under a bearer token, which is bound to the project it was minted in.

The comments

Media type application/json
object
comments
required

The live ones, oldest first.

Array<object>

What somebody said about a case (B8-team T5): plain text with its line breaks, no Markdown, no edit — a changed mind is a second comment. The author is a userId; the dashboard names them from GET /v1/members.

object
id
required
string format: uuid
authorId
required
string
body
required
string
<= 8192 characters
createdAt
required
string format: date-time
Example
{
"comments": [
{
"id": "6f1c2b3a-0000-4000-8000-0000000000a4",
"authorId": "6f1c2b3a-0000-4000-8000-0000000000a2",
"body": "Step 3 is stale since the checkout redesign — the coupon field moved into the order summary.",
"createdAt": "2026-09-18T10:12:00.000Z"
}
]
}

No / invalid token or session

No such case in this project, or it is in the bin

Media type application/json
object
error
required
string
Example
{
"error": "test case '6f1c2b3a-0000-4000-8000-0000000000c1' not found"
}