Skip to main content
PATCH
/
threads
/
{thread_id}
/
comments
/
{comment_id}
Update an internal comment
curl --request PATCH \
  --url https://productlane.com/api/v2/threads/{thread_id}/comments/{comment_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "content": "<string>",
  "attachments": [
    {
      "Name": "<string>",
      "ContentType": "<string>",
      "Content": "<string>",
      "ContentLength": "<string>",
      "ContentID": "<string>"
    }
  ]
}
'
{
  "id": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "content": "<string>",
  "attachments": "<array>",
  "thread_id": "<string>",
  "user_id": "<string>"
}

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
comment_id
string
required

Body

application/json
content
string
Minimum string length: 1
attachments
object[]

Response

Successful response

id
string
required
created_at
string
required
updated_at
string
required
content
string
required
attachments
array
required
thread_id
string
required
user_id
string | null
required