Sites
- 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
Create a new meter
Create a new meter
Creates a new meter
POST
/
teams
/
{team_id}
/
meters
curl --request POST \
--url https://cloud.volttime.com/api/v2/teams/{team_id}/meters \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"type": "<string>",
"charger_id": 123
}'
Request
The id of the team
Response
The newly created meter
The identifier of the meter
The type of the meter
ct_meter
The date the meter was created
The date the meter was last updated
Was this page helpful?
curl --request POST \
--url https://cloud.volttime.com/api/v2/teams/{team_id}/meters \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"type": "<string>",
"charger_id": 123
}'