> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nomos.energy/llms.txt
> Use this file to discover all available pages before exploring further.

# meter_order.check_submitted

> Sent when the customer submits additional details for the installation partner.

<Note>Available from API version `2026-05-27.curie` onwards.</Note>

Triggered when the customer submitted additional details to the installation partner, e.g. a picture of the current meter location.

## Response body parameters

<ResponseField name="id" type="string" required>
  Unique event identifier (starts with `evt_`).
</ResponseField>

<ResponseField name="timestamp" type="string" required>
  ISO 8601 timestamp when the event was created.
</ResponseField>

<ResponseField name="topic" type="literal" required>
  Always `meter_order.check_submitted` for this event.
</ResponseField>

<ResponseField name="context" type="object" required>
  Event-specific data containing related resource IDs.

  <Expandable title="properties" defaultOpen>
    <ResponseField name="meter_order" type="string" required>
      ID of the related smart meter order (starts with `prdo_`).

      Fetch the full record via [`GET /meter-orders/{id}`](/api-reference/smart-meter-orders/retrieve-a-smart-meter-order).
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```json Example payload theme={null}
  {
    "id": "evt_mi4f0oda6x9m7gcsvjk0ole1",
    "timestamp": "2026-01-15T10:30:00.000Z",
    "topic": "meter_order.check_submitted",
    "context": {
      "meter_order": "prdo_mi4f0oda6x9m7gcsvjk0ole1"
    }
  }
  ```
</RequestExample>
