Skip to main content
POST
Add Feedback to Release
This endpoint requires authentication. Include your Bearer token in the Authorization header.

Description

This endpoint allows users to add feedback to a release. Admins can add internal feedback that is only visible to other admins. API Key Support: When using API keys, you can optionally specify a fromUserId to attribute the feedback to a specific user in the workspace. The specified user must exist, be active, and have access to the release. Authorization:
  • Required role: admin or higher

Code Examples

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Path Parameters

id
string<uuid>
required

Release ID

Body

application/json
message
string
required

Feedback message

isInternal
boolean
default:false

Whether the feedback is internal (admin only)

fromUserId
string<uuid>

Optional: TenantUserId to attribute the feedback to. If not provided, defaults to the authenticated user. The specified user must exist in the workspace, be active, and have access to the release.

Response

Success

success
boolean
Example:

true

message
string
Example:

"Feedback added successfully"

data
object