#### URL Expired

The URL for this request expired after 30 days.

## participate_with_meters

- **array of objects**  
  *required*  
  A list of objects containing details about the meters you want to be participating in the energy market.

## participate_with_meters*

### ADD object

# ``200      Requests were performed successfully for at least one meter.

## object

### participate_with_meters

- **array of objects**  
  *required*  
  A list of objects containing details about the meters you want to be participating in the energy market.

### participate_with_meters*

#### object

A list of objects containing details about the meters you want to be participating in the energy market.

- **meter_id**  
  *uuid*  
  *required*  
  The uuid of the meter to start participating in the energy market.

- **start_date**  
  *date*  
  *required*  
  The date by which you want the meter to start participating in the energy market. Date format: `yyyy-MM-dd`.

- **reason**  
  *string*  
  An optional reason specifying why you want to start participating in energy market.

# ``401      You are not authorized to perform this operation.

# ``403      You do not have the necessary permissions for this operation.

# ``404      One or more meters are not found.

# ``409      - The request body contains multiple occurrences of the same meter uuid. - One or more start dates are in the past.

## Base URL

https://api.staging.leap.energy/v1.1/enrollment/meters/participate

```
curl --request POST \
     --url https://api.staging.leap.energy/v1.1/enrollment/meters/participate \
     --header 'accept: application/json' \
     --header 'content-type: application/json'
```

```
{
  "participate_with_meters": [
    {
      "reason": "reason",
      "meter_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
      "start_date": "2000-01-23"
    },
    {
      "reason": "reason",
      "meter_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
      "start_date": "2000-01-23"
    }
  ]
}
```
