v1
latestOpenAPI 3.0.12026-07-243686491.1 MBCharge Points
Retrieve charge point logs
Required scope: charge-points:read. </br>Organization authorization: supported
get/api/v1/charge-points/{chargePointId}/logs
Path parameters
chargePointIdinteger required
Query parameters
perPageinteger nullable
Logs per page (1–100 for offset, default 10) or logs to fetch (1–1000 for cursor, default 100)
Example:10
pageinteger nullable
Page number to retrieve, default is 0
fromDatestring date-time nullable
Filter to retrieve charge point logs created from date, a date in UTC and ISO8601 (YYYY-MM-DD'T'HH:MM:SS'Z')
Example:2024-05-22T09:30:03Z
toDatestring date-time nullable
Filter to retrieve charge point logs to date, a date in UTC and ISO8601 (YYYY-MM-DD'T'HH:MM:SS'Z')
Example:2024-05-23T09:30:03Z
paginationType'offset' | 'cursor'
beforestring nullable
Cursor to retrieve logs before a specific point in time, used for cursor pagination
Example:1751892357123
afterstring nullable
Cursor to retrieve logs after a specific point in time, used for cursor pagination
Example:1751892357144
Response
Charge point logs with provided id. With offset pagination gets results only when (page * perPage) is less than 10,000 items, use cursor pagination for larger datasets.
Example response
{
"data": [
{
"id": "12345",
"timestamp": "2022-05-12T15:56:45.99Z",
"message": "Charge point connected"
}
]
}