Control
Control flow
Push mode / webhooks (recommended)
Message queue mode
Polling mode (not recommended)
GET /v1/commands
once every minute. Commands are shared in batches whenever we receive them from utilities. They may be sent 24 hours in advance or 10 minutes ahead. They will generally span 1 to 4 hours for batteries.Anatomy of a command
Command
id
string <uuid>
read-onlyrequired
event_id
string <uuid> | null
read-onlyrequired
device_id
string
required
starts_at
string <date-time>
read-onlyrequired
ends_at
string <date-time> | null
read-onlyrequired
duration_s
number | null
read-onlyrequired
is_preparatory_action
boolean
read-onlyrequired
battery_commands
object (BatteryCommand)
read-onlyrequired
mode
enum<string>
required
Allowed values:
BACKUPCHARGEDISCHARGESAVINGSSELF_CONSUMPTIONSTANDBY
power_mode
enum<string> | enum<null>
read-onlyoptional
CHARGE
or DISCHARGE
onlyAllowed values:
FOLLOW_LOADSETPOINT
setpoint_w
integer | null
read-onlyoptional
power_mode
is SETPOINT
. In Watts, always a non-zero positive integer.enable_grid_import
boolean | null
read-onlyoptional
enable_grid_export
boolean | null
read-onlyoptional
backup_reserve_percentage
integer | null
optional
>= 0<= 100
maximum_charge_percentage
integer | null
optional
>= 0<= 100
status
enum<string>
read-onlyrequired
OK
means that the command is happening.Allowed values:
CANCELEDOKOPT_OUT
device_status
enum<string>
required
OK
means that the device is ready to perform the command.Allowed values:
FAILEDOKPENDING
device_status_reason
string | null
optional
device_status
. We will use it when we set device_status
to PENDING
, and feel free to use it as well when setting to OK
or FAILED
.created_at
string <date-time>
read-onlyrequired
updated_at
string <date-time>
read-onlyrequired
device_state
of PENDING
.battery_commands.mode
will be one of CHARGE
, DISCHARGE
, STANDBY
, BACKUP
, SAVINGS
or SELF_CONSUMPTION
. Depending on mode, it may also have a power_mode
or a setpoint_w
attribute.Confirming (for all modes)
device_status
is marked as PENDING
in ours. We expect each command to be acknowledged once it has been scheduled by setting device_status
to OK
via PATCH /v1/commands/{id}
. Alternatively, if you were not able to schedule it, set device_status
to FAILED
and describe a reason in device_status_reason
. If we do not receive confirmation within 15 minutes we will consider the command to have failed and will send a new one.Overriding commands
status
of a command, for instance if an event was canceled by a utility (CANCELED
), or if a homeowner updated their participation (OPT_OUT
). In this case, the device_status
will be reset to PENDING
and we will request again that you acknowledge the cancelation of the command on your end.Modified at 2024-07-08 20:33:32