Find operations areas by predicate.
GET/api/v1/operationsArea
This endpoint retrieves all operation areas that match the specified predicate. By default, it returns the first 20 records. Additional records can be obtained using the 'page' and 'size' parameters.
Request
Query Parameters
predicate objectrequired
pageable objectrequired
Responses
- 200
Success
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
id int64
name string
latitude double
longitude double
altitude double
radius double
[
{
"id": 0,
"name": "string",
"latitude": 0,
"longitude": 0,
"altitude": 0,
"radius": 0
}
]
Loading...