Get a meeting zone by ID
GET/v1/meeting-zones/:id
Retrieve a single meeting zone by its ID
Request
Path Parameters
id stringrequired
Meeting zone ID
Responses
- 200
- 404
Meeting zone found successfully
- application/json
- Schema
- Example (from schema)
Schema
_id stringrequired
The ID of the meeting zone
zoneName stringrequired
The name of the meeting zone
geo objectrequired
type stringrequired
coordinates number[]required
Array of rings for the polygon. Each ring is an array of [longitude, latitude] pairs. The first and last point must be the same.
activate booleanrequired
Whether the meeting zone is active
createdDate date-timerequired
The created date of the meeting zone
latestUpdate date-timerequired
The latest update date of the meeting zone
{
"_id": "672d07188234567890123456",
"zoneName": "Meeting Zone 1",
"geo": {
"type": "Polygon",
"coordinates": [
[
[
-122.4194,
37.7749
],
[
-122.4094,
37.7749
],
[
-122.4094,
37.7849
],
[
-122.4194,
37.7849
],
[
-122.4194,
37.7749
]
]
]
},
"activate": true,
"createdDate": "2025-01-01T00:00:00.000Z",
"latestUpdate": "2025-01-01T00:00:00.000Z"
}
Meeting zone not found
Loading...