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

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

Legacy roaming-style charge-point representation.

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

Response

200 - application/json

Push acknowledged.

Status
enum<string>
Available options:
Accept,
Reject