Table of Contents
The “Request Extra Time” API is used to send a request to the seller to extend the deadline for a job. This API is called when the buyer is unable to deliver the required work within the original deadline and requires more time. The request is sent to the seller who can either accept or reject the request.
Endpoint #
The Voomerr Request Extra Time endpoint is POST https://admin.voomerr.com/api/request-extra-time.php
Parameters #
Field | Data Type | Description |
---|---|---|
success | boolean | Indicates if the request was successful or not |
message | string | A message describing the result of the request |
job_id | string | The ID of the updated job |
status | string | The updated status of the job |
Sample Request #
bash
POST https://admin.voomerr.com/api/request-extra-time.php
Content-Type: application/json
Authorization: Bearer <your_access_token>
{
"job_id": "123456"
}
Sample Response #
json
{
"success": true,
"message": "Extra time requested successfully."
}
Error Responses #
- HTTP 400 Bad Request: Returned if the ‘job_id’ parameter is missing or invalid.
- HTTP 401 Unauthorized: Returned if the authentication token is missing or invalid.