GET
/
api
/
v2
/
teams
/
{team_id}
/
chargers
/
{charger_id}
/
proxy
curl --request GET \
  --url https://cloud.volttime.com/api/v2/teams/{team_id}/chargers/{charger_id}/proxy \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "websocket_url": "wss://cronin.com",
      "role": "follower",
      "created_at": null,
      "updated_at": null
    },
    {
      "websocket_url": "wss://mclaughlin.com",
      "role": "follower",
      "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.

charger_id
integer
required

The ID of the charger.

Response

200 - application/json
data
object[]
Example:
[
  {
    "websocket_url": "wss://cronin.com",
    "role": "follower",
    "created_at": null,
    "updated_at": null
  },
  {
    "websocket_url": "wss://mclaughlin.com",
    "role": "follower",
    "created_at": null,
    "updated_at": null
  }
]