Skip to content

Latest commit

 

History

History
61 lines (47 loc) · 841 Bytes

File metadata and controls

61 lines (47 loc) · 841 Bytes

/api/task/all

← Back to Index

Methods: GET
Status Codes: 200

Table of Contents

General

{
  "type": "object",
  "properties": {
    "key": {
      "type": "string"
    },
    "lastChanged": {
      "type": "string"
    },
    "tasks": {
      "type": "array",
      "items": {
        "type": "unknown"
      }
    }
  }
}

Return to top

Example

Request:

GET /api/task/all?lastChanged=2025-12-22T19:18:13Z
Accept: application/json
ae_s: *WPOMs1+UDquA3lmqjIlKm9mGjr7uixpBspy0HA==
ae_v: c75711
referer: https://apps.alsoenergy.com/powertrack/H511568/administration/config

Response:

{
  "key": "all",
  "lastChanged": "2025-12-22T19:21:41Z",
  "tasks": []
}

Return to top