Get the proxy servers for the specific charger
curl --request GET \
--url https://cloud.volttime.com/api/v3/chargers/{charger_uuid}/proxy \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"websocket_url": "wss://marquardt.com",
"role": "follower",
"created_at": "2025-07-04T13:42:21.000000Z",
"updated_at": "2025-07-04T13:42:21.000000Z"
},
{
"websocket_url": "wss://leuschke.info",
"role": "leader",
"created_at": "2025-07-04T13:42:21.000000Z",
"updated_at": "2025-07-04T13:42:21.000000Z"
}
]
}
See the documentation for more information.
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://cloud.volttime.com/api/v3/chargers/{charger_uuid}/proxy \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"websocket_url": "wss://marquardt.com",
"role": "follower",
"created_at": "2025-07-04T13:42:21.000000Z",
"updated_at": "2025-07-04T13:42:21.000000Z"
},
{
"websocket_url": "wss://leuschke.info",
"role": "leader",
"created_at": "2025-07-04T13:42:21.000000Z",
"updated_at": "2025-07-04T13:42:21.000000Z"
}
]
}