Skip to main content
GET
/
api
/
v1
/
ops
/
reports
/
sales-series
Get Sales Series
curl --request GET \
  --url https://api.example.com/api/v1/ops/reports/sales-series \
  --header 'Authorization: Bearer <token>'
[
  {
    "total": 320000,
    "date": "2026-01-01T00:00:00.000Z"
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

range
string

Paid at range

Example:

">=2024-01-01;<=2024-12-31"

fields
string

Comma-separated list of fields to include in the response. Supports dot notation for nested projection (e.g. id,name,user.email,trips.route.id). Unknown fields are silently dropped.

Response

OK

total
integer
required

Net sales in cents

Example:

320000

date
string<date-time>
required

Day

Example:

"2026-01-01T00:00:00.000Z"