Skip to main content
GET
/
v1
/
entities
List Entities
curl --request GET \
  --url https://api.traxes.io/connect/v1/entities \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "type": "Battery",
      "brand": "<string>",
      "identifier": "<string>",
      "name": "<string>",
      "parentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "isOnline": true,
      "properties": "<any>",
      "lastSeen": "2023-11-07T05:31:56Z",
      "created": "2023-11-07T05:31:56Z"
    }
  ],
  "links": {
    "next": "<string>"
  },
  "meta": {
    "continuationToken": "<string>",
    "pageSize": 123
  }
}

Authorizations

Authorization
string
header
required

Access Token Authentication

Query Parameters

pageSize
integer
default:25

The number of Entities per page

continuationToken
string

The token used to retrieve the next page

type
enum<string>

If set, the type of the Entities to filter on

Available options:
Battery,
ChargePoint,
EV,
HeatPump,
SolarPlant,
RetrofitMeter,
Meter,
Inverter
activeFeature
enum<string>

If set, the feature that must be active for the Entity

Available options:
CaptureChargeSessions

Response

OK

A page of entities

data
object[] | null
meta
object