GET /api/v3/route

Retrieves all routes with their meter counts

GetRoutesV3 Permissions: Meters (View)
Use this endpoint to list all meter reading routes. Each route includes its name, code, and the number of meters assigned.

Request Headers

Header Value Required Description
ECI-ApiKey string Yes Your API key. See Authentication.
Content-Type application/json Yes All requests must specify JSON content type.

Responses

200 OK The request succeeded and the response body contains the requested data.

Response Body Parameters

Array of:

RouteResponse
Property Description Type
numberOfMeters The number of meters assigned to this route integer (int32)
routeCode The route code string
routeId The route identifier integer (int32)
routeInfo The route info string
Example Response application/json
[
  {    "numberOfMeters": 1,    "routeCode": "string",    "routeId": 1,    "routeInfo": "string"
  }
]