Search meter enrollments

Time Status User Agent
Make a request to see history.

URL Expired

The URL for this request expired after 30 days.


API Parameters

page_token

page_size

transmission_region

customer_classification

meter_ids

partner_references

global_enrollment_statuses

meter_types

load_types

customer_groups

tags

last_modified_date_time

created_after_date_time

created_before_date_time

partner_action_required

exclude_archived

connection_reference_ids

action_type


Responses

200 Success

400 Bad Request

401 Unauthorized

403 Forbidden

404 Not Found

500 Internal Server Error


Example Request

curl --request POST \
     --url https://api.staging.leap.energy/v2/meters/enrollments/search \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '{\n  "page_size": 500,\n  "partner_references": [],\n  "global_enrollment_statuses": [],\n  "meter_types": [],\n  "load_types": [],\n  "customer_groups": [],\n  "tags": [],\n  "partner_action_required": false,\n  "exclude_archived": false,\n  "connection_reference_ids": [],\n  "action_type": []\n}\\n'  

Example Response

{
  "next_page_token": "PAGE_TOKEN",
  "meters": [
    {
      "meter_id": "11111111-1111-1111-1111-111111111111",
      "is_archived": false,
      "customer_group": "",
      "global_enrollment_status": "ELIGIBLE",
      "participation_preferences": [
        {
          "participation_preference": "PARTICIPATE",
          "start_time": "2024-04-24T16:03:06Z",
          "end_time": "9000-12-31T23:59:59.999999999Z"
        }
      ],
      "program_enrollment": [
        {
          "program_identifier": "PSEGLI-CSRP",
          "delivery_period": "PSEGLI-CSRP_2025_MAY_SEP",
          "delivery_period_start_date_time": "2025-05-01T04:00:00Z",
          "delivery_period_end_date_time": "2025-09-30T04:00:00Z",
          "enrollment_status": "INELIGIBLE",
          "enrollment_deadlines": [
            {
              "enrollment_deadline_date_time": "2025-03-15T04:00:00Z",
              "activation_date_time": "2025-05-01T04:00:00Z"
            }
          ]
        }
      ],
      "required_actions": { ... },
      "connection_references": ["test_jae"],
      "tags": [],
      "partner_reference": "test_meter",
      "transmission_region": "NYISO",
      "customer_classification": "RESIDENTIAL",
      "load_types": ["HVAC"],
      "meter_type": "UTILITY_METER",
      "audit": { ... }
    }
  ]
}