Search meters on your account

Time Status User Agent
Make a request to see history.

URL Expired

The URL for this request expired after 30 days.

Meters API V1 Deprecation

The Meters API v1 endpoints are being deprecated. Please use the new v2 endpoints outlined in this Meters API v2 developer guide. For a summary of field name and location changes from V1 to V2, see this changelog post.

Request Parameters

Responses

200 Meter found

Meter Object

Participation Object

401 You are not authorized to perform this operation.

403 - No permission to access this meter

404 - Meter could not be found.

Example Request

curl --request POST \
     --url https://api.staging.leap.energy/v1.1/account/{account_id}/meters/search \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '{"page_size":500}'

Example Response

{
  "next_page_token": "next_page_token",
  "results": [
    {
      "participation": [
        {
          "market_group_name": "GRP1_NAME",
          "program_name": "DRAM",
          "market_group_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
          "trade_date": "2000-01-23T04:56:07.000+00:00"
        }
      ],
      "bill_service_account_number": "1234567890",
      "load_serving_entity": "load_serving_entity",
      "utility": "SCE",
      "created_at": "2000-01-23T04:56:07.000+00:00",
      "meter_type": "meter_type",
      "service_address": {
        "state_or_province": "California",
        "country": "US",
        "street_1": "914nd Street",
        "city": "Seah",
        "street_2": "street_2",
        "postal_code": "42908"
      },
      "transmission_region": "CAISO",
      "bill_customer_agreement_number": "1234567890",
      "enrollment": {
        "partner_preferred_action": "Participate",
        "eligible_from": "2000-01-23T04:56:07.000+00:00",
        "eligible_to": "2000-01-23T04:56:07.000+00:00",
        "action_required": true,
        "status": "Active",
        "tags": ["tag1", "tag2"],
        "service_address_full": "914nd Street, 42908 Seah, California, US",
        "updated_at": "2000-01-23T04:56:07.000+00:00",
        "partner_reference": "meter1",
        "service_point_number": "SAN-0250508399",
        "connection_reference_ids": ["connectionReferenceId1"],
        "tariff": "tariff",
        "customer_name": "customer_name",
        "meter_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91"
    }
  ]
}

Updated 4 months ago