endpoints.list

GET https://www.bluejeansbyverizon.com/api/endpoints/
Lists all Endpoints. You can optionally specify query parameters to filter the results by any field. Querying by geolocation uses special parameters; see the example below.
GET /api/endpoints/ HTTP/1.1 HTTP/1.1 200 OK [ endpoint0, endpoint1, ..., endpointN ] // returns all endpointsGET /api/endpoints/?controlProtocol=TANDBERG_HTTP HTTP/1.1 HTTP/1.1 200 OK [ tandbergEndpoint0, tandbergEndpoint1, ..., tandbergEndpointN ] // filters by the controlProtocol fieldGET /api/endpoints/?geolocation.latitude=37.6360&geolocation.longitude=-122.4759&geolocation.radius=10&geolocation.elevation=189&geolocation.elevation.tolerance=2 HTTP/1.1 HTTP/1.1 200 OK [ endpoint0, endpoint1, ..., endpointN ] // filters by the geolocation and elevation fields // geolocation.latitude (required for geo queries) decimal degrees from -90.0 (south) to 90.0 (north) // geolocation.longitude (required for geo queries) decimal degrees from -180.0 (west) to 180.0 (east) // geolocation.radius (optional, defaults to 100) distance in meters from the latitude, longitude pair defining the search area // geolocation.elevation (optional, defaults to match all elevations) searches only for Endpoints near this elevation in meters above mean sea level // geolocation.elevation.tolerance (optional, defaults to 1) if the elevation parameter was specified, resulting Endpoints will be within this many meters of the elevation

outputs

application/json List<Endpoint>