The “meet up” API is used to retrieve information related to a job meeting or appointment, such as the location and time of the meeting.
Endpoint #
The Voomerr Meet Up endpoint is POST https://admin.voomerr.com/api/meet-up.php
Request Parameters #
Parameter | Type | Description |
---|---|---|
job_id | string | Required. The ID of the job to retrieve meet up details. |
Response Parameters #
Parameter | Type | Description |
---|---|---|
status | string | The status of the API request (e.g. “success” or “error”). |
message | string | A message providing additional information about the request status. |
job_id | string | The ID of the job for which meet up details are being retrieved. |
date | string | The date of the meet up (in the format YYYY-MM-DD). |
time | string | The time of the meet up (in the format HH:MM:SS). |
location | string | The location of the meet up. |
contact_name | string | The name of the contact person for the meet up. |
contact_phone | string | The phone number of the contact person for the meet up. |
Request Example #
json
{
"job_id": "1234"
}
Response Example #
json
{
"status": "success",
"message": "Meet up details retrieved successfully.",
"job_id": "1234",
"date": "2022-04-01",
"time": "10:00:00",
"location": "123 Main St, Anytown, USA",
"contact_name": "John Smith",
"contact_phone": "555-1234"
}