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