PATCH
/
entities
/
asset
/
{asset_id}
curl --request PATCH \
  --url https://api-sandbox.axle.energy/entities/asset/{asset_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "properties": {
    "power_kw": 1,
    "capacity_kwh": 1
  }
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "external_id": "<string>",
  "type": "boundary meter",
  "site_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "properties": {
    "power_kw": 1,
    "capacity_kwh": 1
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

asset_id
string
required

Body

application/json

Request model for updating an existing asset.

Response

200
application/json

Successfully updated asset

Response model for asset information.