Charge Logs =========== A charge log represents one charging session inside be.ENERGISED. A charging session is always connected to a charging station. Reading ------- Charge logs can be accessed in combination with the `charging_stations` `GET` endpoint. This endpoint will return all active (currently running) charge logs of a charging station. The list endpoint is using `offset pagination `__. .. code-block:: bash curl --location --request GET 'https://.beenergised.cloud/api/cpoapi/v1/charging_stations/9fc01640-2b7e-42b3-aad5-05599cd4a123/chargelogs/active/' \ --header 'Authorization: ' \ --header 'Content-Type: application/json' In general charge logs can be accessed per station, where a user can define time filter on the recording start and end dates which reflects the dates a charge log was started or marked as finished within the system. This endpoint is also using `offset pagination `__. .. code-block:: bash curl --location --request GET 'https://.beenergised.cloud/api/cpoapi/v1/charging_stations/9fc01640-2b7e-42b3-aad5-05599cd4a123/chargelogs/' \ --header 'Authorization: ' \ --header 'Content-Type: application/json'