Sends a load-control command to a group of chargers (e.g., reduce power by 50% across an entire site, or pause all charging for 10 minutes for grid-balancing purposes).
curl --request POST \
--url https://api.telluspower.example.com/v1/operator/control/flexibility \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"target_type": "site",
"target_ids": [
"site_001",
"site_002"
],
"command": "set_power_limit",
"params": {
"power_limit_percent": 50,
"duration": 1800,
"reason": "grid_overload"
}
}
'{
"code": 123,
"message": "<string>",
"data": {
"control_id": "<string>",
"status": "executing"
}
}Documentation Index
Fetch the complete documentation index at: https://developers.telluspowergroup.com/llms.txt
Use this file to discover all available pages before exploring further.
OAuth2 client-credentials grant for operator-side integrations.
Obtain an access token by POSTing client_id and client_secret
to /v1/operator/oauth/token. Tokens are valid for 24 hours
(86,400 seconds).
site, operator, all set_power_limit, pause_charging Command-specific parameters.
set_power_limit: { power_limit_percent: int 0–100, duration: int seconds, reason?: string }pause_charging: { duration: int seconds, reason?: string }Required when target_type is site or operator.
Flexibility command issued.
Standard response envelope. code is 0 on success and a non-zero
application code on error (see Error Codes — §14).
curl --request POST \
--url https://api.telluspower.example.com/v1/operator/control/flexibility \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"target_type": "site",
"target_ids": [
"site_001",
"site_002"
],
"command": "set_power_limit",
"params": {
"power_limit_percent": 50,
"duration": 1800,
"reason": "grid_overload"
}
}
'{
"code": 123,
"message": "<string>",
"data": {
"control_id": "<string>",
"status": "executing"
}
}