Skip to main content
GET
/
meter-orders
Get all meter orders
curl --request GET \
  --url https://api.nomos.energy/meter-orders \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "items": [
    {
      "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"
    }
  ],
  "next_page": "<string>",
  "has_more": false
}

Authorizations

Authorization
string
header
required

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

Query Parameters

cursor
string | null
limit
number
default:10
Required range: 1 <= x <= 100
filter[field][operator]
any | null

Available fields:

  • status (string)
  • product (string)
  • customer (string)
  • subscription (string)
  • created_at (date)
  • updated_at (date)

Full Filtering Documentation

Example:

"value"

Response

Retrieve all meter orders for the organization

object
enum<string>
required
Available options:
list
items
object[]
required
next_page
string | null
has_more
boolean
default:false