Skip to main content
GET
/
organisations
/
{organisationID}
/
virtual-assets
/
{virtualAssetID}
/
adjustments
Gets schedule adjustments for a virtual asset within a time range.
curl --request GET \
  --url https://api.trlyr.com/organisations/{organisationID}/virtual-assets/{virtualAssetID}/adjustments \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "adjustments": [
    {
      "acceptedSchedule": 480,
      "adjustedSchedule": 380,
      "reason": "STATE_OF_ENERGY_BOUNDARIES",
      "timestamp": "2023-11-11T14:30:00Z"
    }
  ]
}

Headers

Authorization
string
default:Bearer <access token value>
required

Access token

Path Parameters

organisationID
string
required

Organisation ID

virtualAssetID
string
required

Virtual Asset ID

Query Parameters

start
string
required

Query start time

end
string
required

Query end time

Body

application/json

The body is of type object.

Response

OK

adjustments
object[]
required
Last modified on June 30, 2026