Skip to main content
GET
/
api
/
v3
/
chargers
/
{charger_uuid}
/
transactions
List transactions
curl --request GET \
  --url https://app.plugchoice.com/api/v3/chargers/{charger_uuid}/transactions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "limit": 1,
  "filter": []
}
'
{
  "data": [
    {
      "id": 1,
      "charger_id": 1,
      "charger_connector_id": 1,
      "reservation_id": 7432,
      "id_tag": "DLJN5625",
      "meter_start": 29317,
      "meter_stop": 37253,
      "total_kwh": "7.00",
      "started_at": "2025-12-11T00:54:05.000000Z",
      "stopped_at": "2025-12-26T18:18:18.000000Z",
      "stop_reason": "Other",
      "created_at": "2026-01-10T01:14:32.000000Z",
      "updated_at": "2026-01-10T01:14:32.000000Z",
      "charger": {
        "uuid": "51c7cf5e-fac2-3ac6-8ef8-61e6050503af",
        "identity": "3b33fac5-d303-3ce9-8d1f-c931158d7dad"
      },
      "connector": {
        "connector_id": 1
      }
    },
    {
      "id": 2,
      "charger_id": 2,
      "charger_connector_id": 2,
      "reservation_id": 6052,
      "id_tag": "SCQL7365",
      "meter_start": 41728,
      "meter_stop": 43732,
      "total_kwh": "2.00",
      "started_at": "2025-12-27T04:19:37.000000Z",
      "stopped_at": "2026-01-05T08:00:11.000000Z",
      "stop_reason": "Remote",
      "created_at": "2026-01-10T01:14:32.000000Z",
      "updated_at": "2026-01-10T01:14:32.000000Z",
      "charger": {
        "uuid": "59183559-65ff-3076-b8ca-d2d03d26a42a",
        "identity": "1937113a-b0a2-3b03-925a-3163292463db"
      },
      "connector": {
        "connector_id": 1
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Path Parameters

charger_uuid
string
required

Body

application/json
limit
integer | null

Must be at least 1. Must not be greater than 10000.

Example:

1

filter
object
Example:
[]

Response

200 - application/json
data
object[]
Example:
[
{
"id": 1,
"charger_id": 1,
"charger_connector_id": 1,
"reservation_id": 7432,
"id_tag": "DLJN5625",
"meter_start": 29317,
"meter_stop": 37253,
"total_kwh": "7.00",
"started_at": "2025-12-11T00:54:05.000000Z",
"stopped_at": "2025-12-26T18:18:18.000000Z",
"stop_reason": "Other",
"created_at": "2026-01-10T01:14:32.000000Z",
"updated_at": "2026-01-10T01:14:32.000000Z",
"charger": {
"uuid": "51c7cf5e-fac2-3ac6-8ef8-61e6050503af",
"identity": "3b33fac5-d303-3ce9-8d1f-c931158d7dad"
},
"connector": { "connector_id": 1 }
},
{
"id": 2,
"charger_id": 2,
"charger_connector_id": 2,
"reservation_id": 6052,
"id_tag": "SCQL7365",
"meter_start": 41728,
"meter_stop": 43732,
"total_kwh": "2.00",
"started_at": "2025-12-27T04:19:37.000000Z",
"stopped_at": "2026-01-05T08:00:11.000000Z",
"stop_reason": "Remote",
"created_at": "2026-01-10T01:14:32.000000Z",
"updated_at": "2026-01-10T01:14:32.000000Z",
"charger": {
"uuid": "59183559-65ff-3076-b8ca-d2d03d26a42a",
"identity": "1937113a-b0a2-3b03-925a-3163292463db"
},
"connector": { "connector_id": 1 }
}
]