Skip to main content
GET
/
meter-orders
/
{id}
Get a meter order
curl --request GET \
  --url https://api.nomos.energy/meter-orders/{id} \
  --header 'Authorization: Bearer <token>'
{
  "object": "meter_order",
  "id": "prdo_x83bmixgdcktlpxli778vvgo",
  "subscription": "sub_vzyqxohw546im28zwyhn04ei",
  "customer": "cus_qacki3zcrkc9r41qt44ngl9d",
  "provider": "energy-metering",
  "status": "waiting",
  "created_at": "2024-03-14T12:00:00Z",
  "updated_at": "2024-03-14T12:00:00Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required
Example:

"prdo_vt0aln8haawsi0yir88rudf2"

Response

The meter order details

object
enum<string>
required

Type of the object, always 'meter_order'

Available options:
meter_order
id
string
required

Unique identifier for the meter order

Example:

"prdo_x83bmixgdcktlpxli778vvgo"

subscription
string
required

ID of the subscription

Example:

"sub_vzyqxohw546im28zwyhn04ei"

customer
string
required

ID of the customer

Example:

"cus_qacki3zcrkc9r41qt44ngl9d"

provider
enum<string>
required

The smart meter provider

Available options:
energy-metering,
metrify,
inexogy
Example:

"energy-metering"

status
enum<string>
required

Current status of the meter order.

Possible values:

  • waiting: The customer has requested a smart meter - waiting to transfer the order to the meter provider (e.g. missing MaLo, MeLo,..)
  • ordered: We have transferred the order to the meter provider
  • checked: The meter provider did a smart meter check and confirmed to process the order
  • installation_planning: The meter provider is planning the installation (e.g. waiting for the customer to confirm the installation date)
  • installation_scheduled: The meter provider has scheduled the installation with the customer (e.g. waiting for the customer to confirm the installation date)
  • installation_waiting: The meter provider is waiting for the installation to start (e.g. waiting for the customer to confirm the installation date)
  • installation_finished: The meter provider has finished the installation and the new meter data has been transferred to the network operator
  • activated: The smart meter is activated and can be used for automatic consumption data transmission
  • installed: The smart meter is installed
  • pre_installed: There is already a smart meter installed - no installation is needed
  • cancelled: The order has been cancelled
  • intended: The customer shows interest but has not yet completed the order
  • blocked: The order is artificially blocked by our system - waiting for admin approval
  • blocked_wim: The smart meter is blocked in Wechselprozess im Messwesen (WiM) - waiting for the network operator to confirm the installation
Available options:
waiting,
ordered,
checked,
installation_planning,
installation_scheduled,
installation_waiting,
installation_finished,
activated,
installed,
pre_installed,
cancelled,
intended,
blocked,
blocked_wim
Example:

"waiting"

created_at
required

Timestamp when the order was created

Example:

"2024-03-14T12:00:00Z"

updated_at
required

Timestamp when the order was last updated

Example:

"2024-03-14T12:00:00Z"