Table of Contents
This API allows a user to edit an offer that they have made for a gig. The offer can be edited to update the amount, currency, required time, and delivery type.
Endpoint #
The Voomerr Review Offer API endpoint is POST https://admin.voomerr.com/api/edit_offer.php
Parameters #
| Parameter | Required | Description |
|---|---|---|
| offer_id | Yes | The ID of the offer to be edited. |
| amount | No | The updated amount offered by the buyer for the gig. |
| currency | No | The updated currency of the amount offered. |
| required_time | No | The updated required time for completing the gig. |
| delivery_type | No | The updated delivery type for the gig, such as physical or digital delivery. |
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/edit_offer.php
{
"offer_id": 1234,
"amount": 75,
"currency": "USD",
"required_time": "2 days",
"delivery_type": "Physical"
}
Example Response #
json
{
"success": true,
"message": "Offer edited successfully."
}