Table of Contents
This API allows a user to review an offer that they have received for a gig. The review includes the amount offered, transportation cost, time zone, and currency.
Endpoint #
The Voomerr Review Offer API endpoint is POST https://admin.voomerr.com/api/review_offer.php
Parameters #
| Parameter | Required | Description |
|---|---|---|
| amount | Yes | The amount offered by the buyer for the gig. |
| transportation_cost | No | The transportation cost for the gig, if applicable. |
| timeZone | Yes | The time zone of the user. |
| currency | Yes | The currency of the amount offered. |
| gig_id | Yes | The ID of the gig for which the offer was made. |
Response #
The API returns a JSON object with the following fields:
| Field | Description |
|---|---|
| success | Indicates whether the API call was successful. |
| message | A message describing the result of the API call. |
Example Request #
json
POST https://admin.voomerr.com/api/review_offer.php
{
"amount": 50,
"transportation_cost": 10,
"timeZone": "EST",
"currency": "USD",
"gig_id": 1234
}
Example Response #
json
{
"success": true,
"message": "Offer reviewed successfully."
}
