Skip to content
Comments

Create a comment

Understanding how to use FeatureOS API to build custom integrations.

Introduction

This endpoint allows you to create a new comment in your organization.

POST https://api.featureos.app/api/v3/comments
curl -X POST 'https://api.featureos.app/api/v3/comments' \
  -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.
internal false Boolean If "true" it will be added as a internal comment.
feature_request_id true Integer The ID of the feature_request in which the comment needs to be added.

Sample response