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": {
    "id": 394,
    "identity": "a4855dc5-0acb-33c3-b921-f4291f719ca0",
    "reference": null,
    "connection_status": "never_seen",
    "status": null,
    "error": null,
    "error_info": null,
    "created_at": "2025-03-12T13:49:24.000000Z",
    "updated_at": "2025-03-12T13:49:24.000000Z"
  }
}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Path Parameters

team_id
integer
required

The ID of the team.

site_id
integer
required

The ID of the site.

Body

application/json
identity
string
required

Must not be greater than 45 characters.

Example:

"b"

Response

200 - application/json
data
object

Was this page helpful?