Skip to main content

List comments

GET /api/v1/feedback/features/:featureId/comments

Headers

HeaderRequiredDescription
X-Bundle-IDYesApp bundle identifier
X-Team-IDYesApple Developer Team ID

Response

[
  {
    "id": "uuid",
    "featureRequestId": "uuid",
    "authorType": "user",
    "body": "Great idea! I'd love this feature.",
    "createdAt": "2025-03-10T12:00:00Z"
  }
]

Add a comment

POST /api/v1/feedback/features/:featureId/comments

Body

{
  "authorId": "user_123",
  "body": "Great idea! I'd love this feature."
}
FieldTypeRequiredDescription
authorIdstringYesUser or device identifier
bodystringYesComment text (1–2,000 characters)

Response

Returns the created comment object.