This API is used to allow users to report a gig that is violating the platform’s terms of service or community guidelines.
The API request is sent using HTTP POST method and the response is in JSON format. The API returns a status code indicating whether the request was successful or not, along with a message providing additional information.
Endpoint #
The Voomerr User Gig Report endpoint is POST https://admin.voomerr.com/api/user-gig-report.php
Request Parameters #
Parameter | Required | Description |
---|---|---|
gig_id | Yes | The ID of the gig being reported. |
user_id | Yes | The ID of the user reporting the gig. |
reason | Yes | The reason for reporting the gig. |
message | No | Additional details or message from the user regarding the report. |
Response Parameters #
Parameter | Description |
---|---|
success | A boolean value indicating if the report was successfully submitted. |
message | A message indicating the result of the report submission. |
Request Example #
json
POST https://admin.voomerr.com/api/user-gig-report.php
{
"gig_id": 1234,
"user_id": 5678,
"reason": "The gig violates the platform's terms of service.",
"message": "The seller is offering a service that is illegal."
}
Response Example #
json
{
"success": true,
"message": "Report submitted successfully."
}