Remotely start charging on a specific connector.
Related: if a remote-start fails or the connector gets stuck in preparing state, see the Connector stuck in Preparing state runbook in Diagnostic Runbooks.
curl --request POST \
--url https://api.telluspower.example.com/v1/operator/devices/{device_id}/connectors/{connector_id}/start \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"charge_power": 7,
"duration": 3600,
"target_soc": 80,
"transaction_id": "txn_20250315001"
}
'{
"code": 0,
"message": "Command sent",
"data": {
"command_id": "cmd_5678",
"status": "queued"
}
}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).
Command queued.
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/devices/{device_id}/connectors/{connector_id}/start \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"charge_power": 7,
"duration": 3600,
"target_soc": 80,
"transaction_id": "txn_20250315001"
}
'{
"code": 0,
"message": "Command sent",
"data": {
"command_id": "cmd_5678",
"status": "queued"
}
}