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-12 13:49:24",
  "date_to": "2025-03-12 13:49:24",
  "limit": 1,
  "order_by": "desc"
}'
{
  "data": [
    {
      "id": null,
      "charger_id": null,
      "charger_connector_id": null,
      "reservation_id": null,
      "id_tag": null,
      "meter_start": null,
      "meter_stop": null,
      "total_kwh": "0.00",
      "start_cost": null,
      "kwh_cost": null,
      "total_kwh_cost": null,
      "total_cost": null,
      "started_at": null,
      "stopped_at": null,
      "stop_reason": null,
      "created_at": null,
      "updated_at": null
    },
    {
      "id": null,
      "charger_id": null,
      "charger_connector_id": null,
      "reservation_id": null,
      "id_tag": null,
      "meter_start": null,
      "meter_stop": null,
      "total_kwh": "0.00",
      "start_cost": null,
      "kwh_cost": null,
      "total_kwh_cost": null,
      "total_cost": null,
      "started_at": null,
      "stopped_at": null,
      "stop_reason": 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.

charger_id
integer
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-12 13:49:24"

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-12 13:49:24"

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": null,
    "charger_id": null,
    "charger_connector_id": null,
    "reservation_id": null,
    "id_tag": null,
    "meter_start": null,
    "meter_stop": null,
    "total_kwh": "0.00",
    "start_cost": null,
    "kwh_cost": null,
    "total_kwh_cost": null,
    "total_cost": null,
    "started_at": null,
    "stopped_at": null,
    "stop_reason": null,
    "created_at": null,
    "updated_at": null
  },
  {
    "id": null,
    "charger_id": null,
    "charger_connector_id": null,
    "reservation_id": null,
    "id_tag": null,
    "meter_start": null,
    "meter_stop": null,
    "total_kwh": "0.00",
    "start_cost": null,
    "kwh_cost": null,
    "total_kwh_cost": null,
    "total_cost": null,
    "started_at": null,
    "stopped_at": null,
    "stop_reason": null,
    "created_at": null,
    "updated_at": null
  }
]

Was this page helpful?