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": null,
      "charger_id": null,
      "connector_id": null,
      "status": null,
      "error": null,
      "error_info": null,
      "max_amperage": null,
      "created_at": null,
      "updated_at": null
    },
    {
      "id": null,
      "charger_id": null,
      "connector_id": null,
      "status": null,
      "error": null,
      "error_info": null,
      "max_amperage": null,
      "created_at": null,
      "updated_at": null
    }
  ]
}

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": null,
    "charger_id": null,
    "connector_id": null,
    "status": null,
    "error": null,
    "error_info": null,
    "max_amperage": null,
    "created_at": null,
    "updated_at": null
  },
  {
    "id": null,
    "charger_id": null,
    "connector_id": null,
    "status": null,
    "error": null,
    "error_info": null,
    "max_amperage": null,
    "created_at": null,
    "updated_at": null
  }
]

Was this page helpful?