This API endpoint allows users to add feedback with images.
Endpoint #
The Voomerr Add Feedback endpoint is POST https://admin.voomerr.com/api/add_feedback.php
Request Parameters #
Parameter | Type | Required | Description |
---|---|---|---|
user_id | int | Yes | The ID of the user adding feedback. |
title | string | Yes | The title of the feedback. |
explanation | string | Yes | The explanation of the feedback. |
image[] | file | No | An array of images to be attached to the feedback. |
Response Parameters #
Parameter | Type | Description |
---|---|---|
status | string | The status of the request. |
message | string | A message related to the status of the request. |
Request Example #
json
{
"user_id": 1234,
"title": "Great Experience",
"explanation": "I had a wonderful experience with this service. Highly recommended!",
"image": [
"feedback_image_1.png",
"feedback_image_2.png"
]
}
Response Example #
json
{
"status": "success",
"message": "Feedback added successfully"
}