GET
/
api
/
v2
/
teams
/
{team_uuid}
/
sites
/
{site_uuid}
/
transactions
curl --request GET \
  --url https://cloud.volttime.com/api/v2/teams/{team_uuid}/sites/{site_uuid}/transactions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 27,
      "charger_id": 98,
      "charger_connector_id": 36,
      "reservation_id": 5719,
      "id_tag": "WRSI4902",
      "meter_start": 34891,
      "meter_stop": 44009,
      "total_kwh": "9.12",
      "start_cost": "0.0000",
      "kwh_cost": "0.0000",
      "total_kwh_cost": "0.0000",
      "total_cost": "0.00",
      "started_at": "2025-03-16T02:32:03.000000Z",
      "stopped_at": "2025-03-17T15:27:02.000000Z",
      "stop_reason": "EVDisconnected",
      "created_at": "2025-03-31T12:18:52.000000Z",
      "updated_at": "2025-03-31T12:18:52.000000Z"
    },
    {
      "id": 28,
      "charger_id": 99,
      "charger_connector_id": 37,
      "reservation_id": 8227,
      "id_tag": "VLXJ2316",
      "meter_start": 17442,
      "meter_stop": 26587,
      "total_kwh": "9.15",
      "start_cost": "0.0000",
      "kwh_cost": "0.0000",
      "total_kwh_cost": "0.0000",
      "total_cost": "0.00",
      "started_at": "2025-03-23T03:58:35.000000Z",
      "stopped_at": "2025-03-27T22:18:55.000000Z",
      "stop_reason": "Local",
      "created_at": "2025-03-31T12:18:52.000000Z",
      "updated_at": "2025-03-31T12:18:52.000000Z"
    }
  ],
  "links": {
    "first": "/?page=1",
    "last": null,
    "prev": null,
    "next": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "path": "/",
    "per_page": 25,
    "to": 2
  }
}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Path Parameters

team_uuid
string
required
site_uuid
string
required

Response

200 - application/json
data
object[]
Example:
[
  {
    "id": 27,
    "charger_id": 98,
    "charger_connector_id": 36,
    "reservation_id": 5719,
    "id_tag": "WRSI4902",
    "meter_start": 34891,
    "meter_stop": 44009,
    "total_kwh": "9.12",
    "start_cost": "0.0000",
    "kwh_cost": "0.0000",
    "total_kwh_cost": "0.0000",
    "total_cost": "0.00",
    "started_at": "2025-03-16T02:32:03.000000Z",
    "stopped_at": "2025-03-17T15:27:02.000000Z",
    "stop_reason": "EVDisconnected",
    "created_at": "2025-03-31T12:18:52.000000Z",
    "updated_at": "2025-03-31T12:18:52.000000Z"
  },
  {
    "id": 28,
    "charger_id": 99,
    "charger_connector_id": 37,
    "reservation_id": 8227,
    "id_tag": "VLXJ2316",
    "meter_start": 17442,
    "meter_stop": 26587,
    "total_kwh": "9.15",
    "start_cost": "0.0000",
    "kwh_cost": "0.0000",
    "total_kwh_cost": "0.0000",
    "total_cost": "0.00",
    "started_at": "2025-03-23T03:58:35.000000Z",
    "stopped_at": "2025-03-27T22:18:55.000000Z",
    "stop_reason": "Local",
    "created_at": "2025-03-31T12:18:52.000000Z",
    "updated_at": "2025-03-31T12:18:52.000000Z"
  }
]
meta
object

Was this page helpful?