curl --location --request POST 'https://backend-feedback-io.onrender.com/suggestions' \
--header 'Content-Type: application/json' \
--data-raw '{
"title": "Add Dark Mode Support",
"content": "We should implement a dark mode theme for better user experience during night time usage.",
"category_id": 1,
"user_id": 2
}'
{
"data": {
"id": 0,
"title": "string",
"content": "string",
"votes": 0,
"comments": null,
"category_id": 0,
"status": "string",
"user_id": 0,
"created_at": "string",
"updated_at": "string"
},
"success": true
}