Sending a request to the OData API

The following examples use &top=1000 to return only the first 1000 results. This value can be up to 10,000 to suit your needs.

  • HTTP example:

    Copy
    GET /DimAccount?$top=1000
     HTTP/1.1
    Host: https://services.itrontotal.com/odata
    itron-route-override: iaodata
    Authorization: Bearer 
    {{Token}}
  • cURL example

    Copy
    curl --location --request GET 'https://services.itrontotal.com/odata/DimAccount?$top=1000%0A' \
    --header 'itron-route-override: iaodata' \
    --header 'Authorization: Bearer 
    {{Token}}