| Time | Status | User Agent |  |
| :-- | :-- | :-- | :-- |
| Make a request to see history. |

#### URL Expired

The URL for this request expired after 30 days.

### Dispatch Webhook   [Skip link to Dispatch Webhook](https://developer.leap.energy/reference/testwebhook-2#dispatch-webhook)

Webhook events for dispatch notifications are currently setup independently of this general webhook platform. See the [Dispatch Webhook Events](https://developer.leap.energy/docs/webhook-push-notifications-v2) guide for setting up and receiving dispatch webhooks using the [meter-level](https://developer.leap.energy/reference/createorupdatemeterdispatchwebhook) or [group-level](https://developer.leap.energy/reference/createorupdategroupdispatchwebhook-1) endpoints.

### Webhook Parameters

- **webhook_id**  
  - Type: uuid  
  - Required: true  
  - Description: The ID of the webhook.

- **webhook_event_type**  
  - Type: string  
  - Allowed Values: `meter.created`  
  - Required: true

- **meter_id**  
  - Type: uuid  
  - Required: true  
  - Description: The unique identifier for the meter.

- **partner_reference**  
  - Type: string  
  - Length: between 3 and 256  
  - Pattern: `^[^\/\\?\]\[{}!#$%^&*()<>|]{3,256}$`  
  - Description: The partner-supplied reference ID to help identify the customer or site that a Leap meter correlates to a partner’s internal systems.

- **transmission_region**  
  - Type: string  
  - Allowed Values: `CAISO`, `ERCOT`, `NYISO`, `ISONE`, `PJM`  
  - Required: true  
  
- **meter_type**  
  - Type: string  
  - Allowed Values: `UTILITY_METER`, `SUBMETER`, `DEVICE`

#### Response Example

```json
{
  "is_successful": true,
  "status_code": 0,
  "response_time_ms": 6,
  "error": "error"
}
```

#### cURL Example

```bash
curl --request POST \
     --url https://api.staging.leap.energy/v1.1/webhooks//test \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "webhook_event_type": "meter.created",
  "transmission_region": "CAISO"
}
'
```
