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.

Authorizations

Authorization
string
header
required

API token obtained from Sesame HR Dashboard > Settings > Integrations > API

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