GET
/
api
/
v2
/
teams
/
{team_id}
/
chargers
curl --request GET \
  --url https://cloud.volttime.com/api/v2/teams/{team_id}/chargers \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 395,
      "identity": "bfc53181-d647-36b2-9080-f9c2b76006f4",
      "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": 396,
      "identity": "deea2dce-ea5d-340f-90ce-c06cddd4c879",
      "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.

Response

200 - application/json
data
object[]
Example:
[
  {
    "id": 395,
    "identity": "bfc53181-d647-36b2-9080-f9c2b76006f4",
    "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": 396,
    "identity": "deea2dce-ea5d-340f-90ce-c06cddd4c879",
    "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?