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

#### URL Expired

The URL for this request expired after 30 days.

### Submission Schema

#### Meter ID
- **Type:** UUID
- **Required:** Yes
- **Description:** Meter ID

#### Program Identifier
- **Type:** String
- **Required:** Yes
- **Enum Values:**
  - CEC-DSGS
  - CEC-DSGS-OPTION4
  - CAISO-CCA-SC_ONLY
  - Other values...

#### Start Date
- **Type:** Date
- **Required:** Yes
- **Description:** Start of the date-range of the nomination suggestion.

#### End Date
- **Type:** Date
- **Description:** End of the date-range of the nomination suggestion. Should be greater than the start date.

#### Nomination KW
- **Type:** Double
- **Required:** Yes
- **Range:** 0 to 10000
- **Description:** Nominated curtailable load for this meter in kilowatts. Precision of up to 2 decimal places.

### Successful Response

```json
{
  "suggestions": [
    {
      "end_date": "2025-06-01",
      "updated_at": "2025-06-01T08:00:00Z",
      "program_identifier": "CEC-DSGS",
      "created_at": "2025-01-01T00:00:01Z",
      "nomination_suggestion_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
      "nomination_kw": 1.23,
      "meter_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
      "created_by": "created_by",
      "start_date": "2025-05-01",
      "status": "RECEIVED"
    },
    {
      "end_date": "2025-06-01",
      "updated_at": "2025-06-01T08:00:00Z",
      "program_identifier": "CEC-DSGS",
      "created_at": "2025-01-01T00:00:01Z",
      "nomination_suggestion_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
      "nomination_kw": 1.23,
      "meter_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
      "created_by": "created_by",
      "start_date": "2025-05-01",
      "status": "RECEIVED"
    }
  ]
}
```

### Error Responses
- **400:** The request is not valid
- **401:** You are not authorized to perform this operation.
- **403:** You do not have the necessary permissions for this operation.
- **404:** Meter not found
- **500:** Internal server error

---

### API Endpoint

Base URL: `https://api.staging.leap.energy/v2/meters/{meter_id}/nominations/suggestions`

### Example Request

```bash
curl --request POST \
     --url https://api.staging.leap.energy/v2/meters//nominations/suggestions \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '[]'
```

### Note

Updated 11 months ago.
