feedback-io
  1. Suggestions v0
feedback-io
  • Feedback-IO
    • Suggestions v0
      • Fetch Suggestions
        GET
      • Fetch Suggestion by ID
        GET
      • Vote Suggestion
        PUT
      • Create Suggestion
        POST
      • Delete Suggestion
        DELETE
      • Update Suggestion
        PUT
  1. Suggestions v0

Update Suggestion

Developing
PUT
/suggestions/{id}
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://backend-feedback-io.onrender.com/suggestions/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "title": "Add Dark Mode Support",
    "content": "We need a dark mode option for better accessibility and reduced eye strain during night-time usage.",
    "category_id": 1,
    "status_id": 2
}'
Response Response Example
{}

Request

Path Params
id
string 
required
Body Params application/json
object {0}
Examples

Responses

🟢200Success
application/json
Body
object {0}
Modified at 2025-01-07 23:32:39
Previous
Delete Suggestion
Built with