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": [
    {
      "deprecation": "charger.id is deprecated. Use charger.uuid instead.",
      "uuid": "bfc53181-d647-36b2-9080-f9c2b76006f4",
      "id": 105,
      "identity": "5d093e7f-5aae-3aa3-bece-f6e784dcbd67",
      "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": "c68e0767-6220-31fb-a489-61093ff79529",
      "id": 106,
      "identity": "fa253524-dd6a-3fdb-a788-0cabcf134db7",
      "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.

Response

200 - application/json
data
object[]
Example:
[
  {
    "deprecation": "charger.id is deprecated. Use charger.uuid instead.",
    "uuid": "bfc53181-d647-36b2-9080-f9c2b76006f4",
    "id": 105,
    "identity": "5d093e7f-5aae-3aa3-bece-f6e784dcbd67",
    "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": "c68e0767-6220-31fb-a489-61093ff79529",
    "id": 106,
    "identity": "fa253524-dd6a-3fdb-a788-0cabcf134db7",
    "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?