GET
/
v1
/
entities
/
{entityId}
/
charge-sessions
curl --request GET \
  --url https://platform.realto.io/api/v1/entities/{entityId}/charge-sessions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "data": {
        "charge": {
          "averagePower": {
            "unit": "<string>",
            "value": 123
          },
          "end": {
            "unit": "<string>",
            "value": 123
          },
          "start": {
            "unit": "<string>",
            "value": 123
          },
          "total": {
            "t1": 123,
            "t2": 123,
            "t3": 123,
            "t4": 123,
            "total": 123,
            "unit": "<string>"
          }
        },
        "end": "2023-11-07T05:31:56Z",
        "location": {
          "address": "<string>",
          "latitude": 123,
          "longitude": 123
        },
        "locationMatches": [
          {
            "accuracy": 123,
            "location": {
              "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
              "label": "<string>"
            }
          }
        ],
        "range": {
          "start": {
            "unit": "<string>",
            "value": 123
          },
          "end": {
            "unit": "<string>",
            "value": 123
          }
        },
        "start": "2023-11-07T05:31:56Z"
      },
      "entityId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created": "2023-11-07T05:31:56Z"
    }
  ],
  "links": {
    "next": "<string>"
  },
  "meta": {
    "continuationToken": "<string>",
    "pageSize": 123
  }
}

Authorizations

Authorization
string
header
required

Access Token Authentication

Path Parameters

entityId
string
required

The id of the Entity

Query Parameters

start
string
required

The start of the time frame

end
string

The end of the time frame

pageSize
integer
default:
25

The number of Charging Records per page

continuationToken
string

The token used to retrieve the next page

Response

200
application/json
OK

A page of Charging Records

data
object[] | null
meta
object