Skip to main content

Update comment

This endpoint enables you to update an existing comment within a specific thread in a room. Updating a comment allows users to edit their messages, correct mistakes, or add additional information to their existing comments.

How to use

You can use the following cURL to obtain a response on the endpoint:

curl --location --request PUT https://api.superviz.com/threads/comments/{commentId} \
--header 'Content-Type: application/json' \
--header "client_id: ${YOUR CLIENT_ID}" \
--header "secret: ${YOUR SECRET}" \
--data '{
"text": "This is an updated comment"
}'

In the request, you will need to send in the path following field:

NameDescription
commentIdRequired. The ID of the comment.

Headers

When using this endpoint, you need to provide the Client ID and Secret Key. The following headers are required:

NameDescription
client_idRequired. You need to use the Client ID to authenticate in this repository. You can retrieve your Client ID under the Dashboard > Developer > Keys.
secretRequired. You need to use the Secret Key to authenticate in this repository. You can create a new API Secret under our Dashboard > Developer > Keys.

Request Body

NameTypeDescription
textstringThe updated text of the comment.

Response

Status code 200 will indicate that the comment was updated successfully.