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": [
    {
      "id": 392,
      "identity": "4efa138c-86ed-3018-95b4-cac9e9c242a0",
      "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"
    },
    {
      "id": 393,
      "identity": "17473cfc-bf21-3979-8c94-04d670d0ae70",
      "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.

Response

200 - application/json
data
object[]
Example:
[
  {
    "id": 392,
    "identity": "4efa138c-86ed-3018-95b4-cac9e9c242a0",
    "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"
  },
  {
    "id": 393,
    "identity": "17473cfc-bf21-3979-8c94-04d670d0ae70",
    "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"
  }
]

Was this page helpful?