Comments
featureOS update comment API
Introduction
This API endpoint allows you to update a comment in your organization.
PUT https://api.featureos.app/api/v3/comments/:id
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. |
Sample response
{
"id": 1,
"comment_html": "<p>Sample Comment 1</p>\n",
"comment": "Sample Comment 1",
"parent_id": null,
"feature_request": {
"id": 168181,
"url": "https://feedback.featureos.app/b/feedback/p/hello-world",
"title": "Comment created via API"
},
"pinned": false,
"internal": false,
"approval_status": "approved",
"created_at": "2023-04-24T09:53:34.000Z",
"updated_at": "2023-04-24T09:53:34.000Z",
"author": {
"id": 1,
"name": "swathy",
"email": "swathy@featureos.app",
"profile_picture": {
"url": null
},
"url": "https://feedback.featureos.app/admin/users?userId=1",
"role": "admin"
}
}