Skip to main content
GET
/
threads
/
{thread_id}
/
comments
List internal comments
curl --request GET \
  --url https://productlane.com/api/v2/threads/{thread_id}/comments \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>",
      "content": "<string>",
      "attachments": "<array>",
      "thread_id": "<string>",
      "user_id": "<string>"
    }
  ],
  "page": {
    "cursor": "<string>",
    "has_more": true,
    "limit": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://productlane.mintlify.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

thread_id
string
required

Query Parameters

limit
integer
Required range: 1 <= x <= 200
cursor
string

Response

Successful response

data
object[]
required
page
object
required