Skip to main content
GET
/
makes
cURL
curl --request GET \
  --url http://sandbox.batuenergy.com/api/v1/makes \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "data": {
    "execution": "exe_<uuid>",
    "makes": [
      {
        "id": "mke_<uuid>",
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z",
        "type": "METER",
        "brand": "<string>",
        "model": "<string>",
        "version": "<string>",
        "integrations": [
          "int_<uuid>"
        ],
        "metadata": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

type
enum<string>

The type of assets to return

Available options:
METER,
EV,
SOLAR,
BATTERY
brand
string<uuid>

The brand of makes to return

Response

Get makes response

status
string
required

Indicates the request was successful

Example:

"success"

data
object
required

The data associated with the response