Skip to main content
POST

Authentication

Requires subscriber JWT token from login/identify.

Request Body

string
required
The feedback ID to update
string
Updated feedback title
string
Updated feedback description
string
Move feedback to a different board
string
Update feedback type/category
object
Update custom metadata (merged with existing)

Response

object
Updated feedback object with all fields

Behavior

  • Creator Only: Only the feedback creator can update it
  • Partial Updates: Only provided fields are updated
  • URL Regeneration: URL is regenerated if title changes
  • Timestamp Update: updatedAt timestamp is updated automatically

Use Cases

  • Edit Feedback: Allow users to refine their feedback
  • Correct Mistakes: Fix typos or add missing information
  • Update Requirements: Clarify or expand on original feedback

Notes

  • Requires valid subscriber JWT token
  • Only the creator can update (checked via subscriber ID)
  • Returns 403 if user is not the creator
  • Returns 404 if feedback doesn’t exist
  • Metadata is merged, not replaced