Skip to main content
GET
/
api
/
partners
/
v2.0
/
org
/
{org_id}
/
users
/
{user_id}
/
inverters
/
{inverter_id}
/
schedules
Get schedules for an inverter
curl --request GET \
  --url https://api.example.com/api/partners/v2.0/org/{org_id}/users/{user_id}/inverters/{inverter_id}/schedules \
  --header 'Authorization: Bearer <token>'
{
  "metadata": {
    "requested_at": "<string>",
    "query": {
      "org_id": "<string>",
      "user_id": "<string>",
      "inverter_id": "<string>",
      "from_datetime": "<string>",
      "to_datetime": "<string>"
    },
    "error": ""
  },
  "data": [
    {
      "time": "<string>",
      "state": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developers.podero.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

org_id
string<uuid>
required

The organization ID of the user's organization

user_id
string<uuid>
required

The user ID of the user whom the inverter belongs to

inverter_id
string<uuid>
required

The ID of the specified inverter

Query Parameters

from_datetime
string<date-time>
required

The start of the time range for the data

to_datetime
string<date-time>
required

The end of the time range for the data

Response

200 - application/json

OK

metadata
InverterSchedulesMetadata · object
required
data
InverterScheduleOutput · object[]
required