GET
/
api
/
v2
/
teams
/
{team_id}
/
sites
/
{site_id}
/
connectors
curl --request GET \
  --url https://cloud.volttime.com/api/v2/teams/{team_id}/sites/{site_id}/connectors \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 38,
      "charger_id": 103,
      "connector_id": 1,
      "status": "Available",
      "error": "NoError",
      "error_info": null,
      "max_amperage": null,
      "created_at": "2025-03-31T12:18:52.000000Z",
      "updated_at": "2025-03-31T12:18:52.000000Z"
    },
    {
      "id": 39,
      "charger_id": 104,
      "connector_id": 1,
      "status": "Available",
      "error": "NoError",
      "error_info": null,
      "max_amperage": 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:
[
  {
    "id": 38,
    "charger_id": 103,
    "connector_id": 1,
    "status": "Available",
    "error": "NoError",
    "error_info": null,
    "max_amperage": null,
    "created_at": "2025-03-31T12:18:52.000000Z",
    "updated_at": "2025-03-31T12:18:52.000000Z"
  },
  {
    "id": 39,
    "charger_id": 104,
    "connector_id": 1,
    "status": "Available",
    "error": "NoError",
    "error_info": null,
    "max_amperage": null,
    "created_at": "2025-03-31T12:18:52.000000Z",
    "updated_at": "2025-03-31T12:18:52.000000Z"
  }
]

Was this page helpful?