Sites
Chargers
Tariffs
Chargers > Actions
Chargers > Connectors
Chargers > Licenses
Chargers > Proxy
Chargers > Settings
Meters > Chargee
Products
Providers
Sites > Chargers
Sites > Connectors
Sites > Smart Charging
Sites > Teams
- GETGet all teams with access to a site
- GETGet a specific team's access to a site
- DELRemove a team's access to a site
- POSTGrant sensitive data access to a team
- DELRevoke sensitive data access from a team
- PUTModify asset access for a team
- POSTTransfer site ownership to a team
- POSTRequest sensitive data access for a team
- POSTCreate an invite
- POSTAccept an invite
[Deprecated] Chargers
[Deprecated] Commands
[Deprecated] Datapoints
[Deprecated] Sites
[Deprecated] Teams
[Deprecated] Users
Get Chargers
Returns all the chargers that the specified team has access to
curl --request GET \
--url https://cloud.volttime.com/api/v2/teams/{team_id}/chargers \
--header 'Authorization: Bearer <token>'
Request
The id of the team
Response
Array of chargers
Show Charger
Show Charger
The identifier of the charger
The identity of the charger
The connection status of the charger
Show ConnectionStatus
Show ConnectionStatus
never_seen
offline
online
The status of the charger
Show Status
Show Status
Available
Unavailable
Faulted
The error status of the charger
Show Error
Show Error
ConnectorLockFailure
EVCommunicationError
GroundFailure
HighTemperature
InternalError
LocalListConflict
NoError
OtherError
OverCurrentFailure
OverVoltage
PowerMeterFailure
PowerSwitchFailure
ReaderFailure
ResetFailure
UnderVoltage
WeakSignalLevel
Extra error information for the charger
The date the charger was created
The date the charger was last updated
Array of chargers
Show Charger
Show Charger
The identifier of the charger
The identity of the charger
The connection status of the charger
Show ConnectionStatus
Show ConnectionStatus
never_seen
offline
online
The status of the charger
Show Status
Show Status
Available
Unavailable
Faulted
The error status of the charger
Show Error
Show Error
ConnectorLockFailure
EVCommunicationError
GroundFailure
HighTemperature
InternalError
LocalListConflict
NoError
OtherError
OverCurrentFailure
OverVoltage
PowerMeterFailure
PowerSwitchFailure
ReaderFailure
ResetFailure
UnderVoltage
WeakSignalLevel
Extra error information for the charger
The date the charger was created
The date the charger was last updated
{
"data": [
{
"id": 596411,
"identity": "VTT_0001",
"connection_status": "offline",
"status": "Available",
"error": "NoError",
"error_info": null,
"created_at": "2023-09-20T12:40:39.000000Z",
"updated_at": "2023-09-21T12:55:33.000000Z"
},
{
"id": 866541,
"identity": "VTT_0002",
"connection_status": "online",
"status": "Available",
"error": "NoError",
"error_info": null,
"created_at": "2023-09-20T12:40:39.000000Z",
"updated_at": "2023-09-21T12:55:33.000000Z"
}
]
// + Pagination
}
Was this page helpful?
curl --request GET \
--url https://cloud.volttime.com/api/v2/teams/{team_id}/chargers \
--header 'Authorization: Bearer <token>'