Skip to main content
PUT
/
customer
/
query_station_info
Query charge-point information (legacy)
curl --request PUT \
  --url https://api.telluspower.example.com/v1/customer/query_station_info \
  --header 'Content-Type: application/json' \
  --data '
{
  "LastQueryTime": "2024-01-08 15:30:00",
  "PageNo": 3,
  "PageSize": 20
}
'
{
  "PageNo": 123,
  "PageCount": 123,
  "ItemSize": 123,
  "ChargePoints": [
    {
      "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
LastQueryTime
string

Last query time, format yyyy-MM-dd HH:mm:ss. Empty queries all.

PageNo
integer
default:1
PageSize
integer
default:10

Response

200 - application/json

Charge-point list returned.

PageNo
integer
PageCount
integer
ItemSize
integer
ChargePoints
object[]