Sites
- GETGet all transactions
- GETGet all sites
- POSTCreate a new site
- GETGet a specific site
- GETGet all chargers
- POSTCreate a new charger
- DELDetach a charger
- GETGet all connectors for a site
- GETGet smart charging settings
- PUTUpdate smart charging settings
- POSTAttach an existing charger
- GETGet current usage of a connector
- GETGet all groups
- GETGet meter usage for a group
Chargers
Datapoints
Sites
Create a new charger
Sites
Create a new charger
POST
/
api
/
v2
/
teams
/
{team_id}
/
sites
/
{site_id}
/
chargers
curl --request POST \
--url https://cloud.volttime.com/api/v2/teams/{team_id}/sites/{site_id}/chargers \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"identity": "b"
}'
{
"data": {
"deprecation": "charger.id is deprecated. Use charger.uuid instead.",
"uuid": "a4855dc5-0acb-33c3-b921-f4291f719ca0",
"id": 102,
"identity": "c90237e9-ced5-3af6-88ea-84aeaa148878",
"reference": null,
"connection_status": "never_seen",
"status": null,
"error": null,
"error_info": null,
"created_at": "2025-03-31T12:18:52.000000Z",
"updated_at": "2025-03-31T12:18:52.000000Z"
}
}
Authorizations
See the documentation for more information.
Body
application/json
Must not be greater than 45 characters.
Example:
"b"
Response
200 - application/json
Example:
"charger.id is deprecated. Use charger.uuid instead."
Example:
"a4855dc5-0acb-33c3-b921-f4291f719ca0"
Example:
102
Example:
"c90237e9-ced5-3af6-88ea-84aeaa148878"
Example:
null
Example:
"never_seen"
Example:
null
Example:
null
Example:
null
Example:
"2025-03-31T12:18:52.000000Z"
Example:
"2025-03-31T12:18:52.000000Z"
Was this page helpful?
curl --request POST \
--url https://cloud.volttime.com/api/v2/teams/{team_id}/sites/{site_id}/chargers \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"identity": "b"
}'
{
"data": {
"deprecation": "charger.id is deprecated. Use charger.uuid instead.",
"uuid": "a4855dc5-0acb-33c3-b921-f4291f719ca0",
"id": 102,
"identity": "c90237e9-ced5-3af6-88ea-84aeaa148878",
"reference": null,
"connection_status": "never_seen",
"status": null,
"error": null,
"error_info": null,
"created_at": "2025-03-31T12:18:52.000000Z",
"updated_at": "2025-03-31T12:18:52.000000Z"
}
}