Skip to main content
PUT
/
discussion
/
v1
/
comments
/
{commentId}
Update a comment by id
curl --request PUT \
  --url https://api-{region}.sesametime.com/discussion/v1/comments/{commentId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "comment": "new comment"
}
'
This response has no body data.

Documentation Index

Fetch the complete documentation index at: https://apidocs.sesametime.com/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

commentId
string<uuid>
required

Comment ID

Body

application/json

Comment object that needs to be updated

comment
string
required
Example:

"new comment"

Response

204 - undefined