Update a comment
Understanding how to use FeatureOS API to build custom integrations.
Introduction
This API endpoint allows you to update a comment in your organization.
PUT
https://api.featureos.app/api/v3/comments/:id
curl -X PUT 'https://api.featureos.app/api/v3/comments/:id' \
-H 'API-KEY: YOUR_API_KEY' \
-H 'Content-Type: application/json'Headers
| Parameter | Default | Description |
|---|---|---|
| API-KEY | - | Generate from organization settings on the admin dashboard. |
| Authorization | - | Generate a unique JWT token that is specific to a user |
Body Parameters
| Parameter | Required | Format | Description |
|---|---|---|---|
| comment | true | String | The comment to be added. |
| attachments[] | false | File | Upload up to 5 images that will be added to the end of the comment. Each image can be either a 'jpeg', 'jpg', 'png' or 'gif' file and a max size of 10 MB. |
| pinned | false | Boolean | If "true" it will be pinned. |