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 site
Create a new site
Creates a new site
POST
/
teams
/
{team_id}
/
sites
curl --request POST \
--url https://cloud.volttime.com/api/v2/teams/{team_id}/sites \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"identity": "<string>",
"name": "<string>",
"street": "<string>",
"house_number": "<string>",
"house_number_addition": "<string>",
"postal_code": "<string>",
"city": "<string>",
"country": "<string>"
}'
Request
The id of the team
Response
The newly created site
The identifier of the site
The name of the site
The street of the site
The postal code of the site
The house number of the site
The addition to the house number of the site
The city of the site
The country of the site
The date the site was created
The date the site was last updated
Was this page helpful?
curl --request POST \
--url https://cloud.volttime.com/api/v2/teams/{team_id}/sites \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"identity": "<string>",
"name": "<string>",
"street": "<string>",
"house_number": "<string>",
"house_number_addition": "<string>",
"postal_code": "<string>",
"city": "<string>",
"country": "<string>"
}'