| 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](https://developer.leap.energy/docs/sync-meter-inventory-v2).
For a summary of field name and location changes from V1 to V2, see this [changelog post](https://developer.leap.energy/changelog/meters-api-v2-now-released).

### Request Parameters

- **account_id**: uuid (required)
- **date_added_from**: date-time
- **date_added_to**: date-time
- **date_last_modified**: date-time
- **connection_reference_ids**: array of strings (Filter by a set of connection reference IDs...)
- **page_token**: string
- **page_size**: int32 (1 to 500, Defaults to 500)

### Responses

#### 200      Meter found

- **next_page_token**: string (Token to be used in a subsequent request...)
- **results**: array of objects (required)

#### Meter Object

- **meter_id**: uuid (required)
- **partner_reference**: string (required)
- **connection_reference_ids**: array of strings (required)
- **transmission_region**: string (enum, required)
- **utility**: string
- **load_serving_entity**: string
- **load_zone**: string
- **participation**: array of objects (required)
- **service_address**: object (required)
- **tags**: array of strings (required)
- **created_at**: date-time (required)
- **updated_at**: date-time (required)
- **meter_type**: string (required)

#### Participation Object

- **market_group_id**: uuid (required)
- **market_group_name**: string (required)
- **program_name**: string
- **trade_date**: date-time (required)

#### 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
```json
{
  "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**
