Skip to main content
PUT
/
cp
/
query_station_status
Batch device-status query (legacy)
curl --request PUT \
  --url https://api.telluspower.example.com/v1/cp/query_station_status \
  --header 'Content-Type: application/json' \
  --data '
[
  "Test001",
  "Test002"
]
'
[
  {
    "ChargeBoxId": "<string>",
    "CreateTime": "<string>",
    "Type": "DC",
    "Power": 2,
    "Longitude": 0,
    "Latitude": 0,
    "Connectors": [
      {
        "ConnectorId": 1,
        "Status": "Available"
      }
    ]
  }
]

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.

Body

application/json
Maximum array length: 50

Response

200 - application/json

Charge-point array returned.

ChargeBoxId
string
required

Unique device code.

Maximum string length: 64
CreateTime
string
required

ISO 8601 format.

Type
enum<string>
required
Available options:
DC,
AC
Power
integer
required

Maximum power (kW).

Required range: x >= 1
Longitude
number
required
Required range: -180 <= x <= 180
Latitude
number
required
Required range: -90 <= x <= 90
Connectors
object[]
required
Minimum array length: 1