GET
/
api
/
v2
/
teams
/
{team_id}
/
sites
/
{site_id}
/
chargers
curl --request GET \
  --url https://cloud.volttime.com/api/v2/teams/{team_id}/sites/{site_id}/chargers \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "deprecation": "charger.id is deprecated. Use charger.uuid instead.",
      "uuid": "05b1ce77-08b1-3745-b2e8-36706968c4c0",
      "id": 100,
      "identity": "1c5def74-c4f0-3959-968e-c32ed0eb8b5f",
      "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"
    },
    {
      "deprecation": "charger.id is deprecated. Use charger.uuid instead.",
      "uuid": "f54a4125-6a59-37b4-837e-ba9ebc74b037",
      "id": 101,
      "identity": "2aced8a3-a34f-3229-8311-5ff0dd5d5818",
      "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

Authorization
string
header
required

See the documentation for more information.

Path Parameters

team_id
string
required

The ID of the team.

site_id
string
required

The ID of the site.

Response

200 - application/json
data
object[]
Example:
[
  {
    "deprecation": "charger.id is deprecated. Use charger.uuid instead.",
    "uuid": "05b1ce77-08b1-3745-b2e8-36706968c4c0",
    "id": 100,
    "identity": "1c5def74-c4f0-3959-968e-c32ed0eb8b5f",
    "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"
  },
  {
    "deprecation": "charger.id is deprecated. Use charger.uuid instead.",
    "uuid": "f54a4125-6a59-37b4-837e-ba9ebc74b037",
    "id": 101,
    "identity": "2aced8a3-a34f-3229-8311-5ff0dd5d5818",
    "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"
  }
]

Was this page helpful?