PULSAR

Get Daily Production By Interval

Get production data aggregated into configurable minute intervals for a specific day. Values are ordered from 00:00 in the user's timezone. Intervals must be positive whole minutes up to one day (for example 15, 30, or 60).

Authorization

bearerAuth user, superuser, admin, superadmin, readonly
Authorization<token>

In: header

Scope: user, superuser, admin, superadmin, readonly

Query Parameters

intervalMinutes*number

Number of minutes in each production bucket.

Formatdouble
date?string

Optional date in YYYY-MM-DD format. Defaults to today.

machineIds?string

Optional comma-separated list of machine IDs to filter.

Response Body

application/json

Try it live
GET
/machines/realtime/daily-production-by-interval

This endpoint requires authentication — use the Login page at the top of the API Reference, or paste a token in the Authorization section below.

curl -X GET "https://example.com/machines/realtime/daily-production-by-interval?intervalMinutes=0.1"
{  "date": "string",  "data": [    {      "machineId": 0.1,      "sku": {        "id": "string",        "sku": "string",        "name": "string"      },      "intervals": [        0      ]    }  ]}