GET
/
api
/
v2
/
teams
/
{team_id}
/
chargers
/
{charger_id}
/
transactions
curl --request GET \
  --url https://cloud.volttime.com/api/v2/teams/{team_id}/chargers/{charger_id}/transactions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "date_from": "2025-03-31 12:18:52",
  "date_to": "2025-03-31 12:18:52",
  "limit": 1,
  "order_by": "desc"
}'
{
  "data": [
    {
      "id": 29,
      "charger_id": 110,
      "charger_connector_id": 40,
      "reservation_id": 7432,
      "id_tag": "DLJN5625",
      "meter_start": 29317,
      "meter_stop": 37253,
      "total_kwh": "7.94",
      "start_cost": "0.0000",
      "kwh_cost": "0.0000",
      "total_kwh_cost": "0.0000",
      "total_cost": "0.00",
      "started_at": "2025-03-18T11:57:00.000000Z",
      "stopped_at": "2025-03-27T00:11:26.000000Z",
      "stop_reason": "Other",
      "created_at": "2025-03-31T12:18:52.000000Z",
      "updated_at": "2025-03-31T12:18:52.000000Z"
    },
    {
      "id": 30,
      "charger_id": 111,
      "charger_connector_id": 41,
      "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"
    }
  ]
}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Path Parameters

team_id
string
required

The ID of the team.

charger_id
string
required

The ID of the charger.

Body

application/json
date_from
string

Must be a valid date in the format <code>Y-m-d H:i:s</code>. This field is required when <code>date_to</code> is present.

Example:

"2025-03-31 12:18:52"

date_to
string

Must be a valid date in the format <code>Y-m-d H:i:s</code>. This field is required when <code>date_from</code> is present.

Example:

"2025-03-31 12:18:52"

limit
integer

Must not be greater than 10000.

Example:

1

order_by
enum<string>
Available options:
desc,
asc
Example:

"desc"

Response

200 - application/json
data
object[]
Example:
[
  {
    "id": 29,
    "charger_id": 110,
    "charger_connector_id": 40,
    "reservation_id": 7432,
    "id_tag": "DLJN5625",
    "meter_start": 29317,
    "meter_stop": 37253,
    "total_kwh": "7.94",
    "start_cost": "0.0000",
    "kwh_cost": "0.0000",
    "total_kwh_cost": "0.0000",
    "total_cost": "0.00",
    "started_at": "2025-03-18T11:57:00.000000Z",
    "stopped_at": "2025-03-27T00:11:26.000000Z",
    "stop_reason": "Other",
    "created_at": "2025-03-31T12:18:52.000000Z",
    "updated_at": "2025-03-31T12:18:52.000000Z"
  },
  {
    "id": 30,
    "charger_id": 111,
    "charger_connector_id": 41,
    "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"
  }
]

Was this page helpful?