Refer to the /schemas/event endpoint for the full JSON Schema definition
GET //dr/dr-events/{eventId} HTTP/1.1 Host: api.ecosuite.io Authorization: YOUR_API_KEY Accept: */*
successful operation
{ "type": "energy", "cause": "text", "priority": 1, "startDate": "2025-04-30T07:07:28.639Z", "dueDate": "2025-04-30T07:07:28.639Z", "endDate": "2025-04-30T07:07:28.639Z", "description": "text", "location": { "project": "text", "site": "text", "system": "text", "node": "text", "device": "text" }, "notes": [ { "noteDate": "2025-04-30T07:07:28.639Z", "note": "text" } ] }
DELETE //dr/dr-events/{eventId} HTTP/1.1 Host: api.ecosuite.io Authorization: YOUR_API_KEY Accept: */*
No content
GET //dr/dr-events HTTP/1.1 Host: api.ecosuite.io Authorization: YOUR_API_KEY Accept: */*
{ "events": [ { "priority": "low", "name": "text", "startDate": "2025-04-30T07:07:28.639Z", "notificationDate": "2025-04-30T07:07:28.639Z", "notificationSent": true, "endDate": "2025-04-30T07:07:28.639Z", "goal": "text", "participants": [ "text" ] } ] }
Refer to the /schemas/dr-event endpoint for the full JSON Schema definition
low
medium
high
The event Id.
POST //dr/dr-events HTTP/1.1 Host: api.ecosuite.io Authorization: YOUR_API_KEY Content-Type: application/json Accept: */* Content-Length: 216 { "priority": "low", "name": "text", "startDate": "2025-04-30T07:07:28.639Z", "notificationDate": "2025-04-30T07:07:28.639Z", "notificationSent": true, "endDate": "2025-04-30T07:07:28.639Z", "goal": "text", "participants": [ "text" ] }
text
PUT //dr/dr-events/{eventId} HTTP/1.1 Host: api.ecosuite.io Authorization: YOUR_API_KEY Content-Type: application/json Accept: */* Content-Length: 216 { "priority": "low", "name": "text", "startDate": "2025-04-30T07:07:28.639Z", "notificationDate": "2025-04-30T07:07:28.639Z", "notificationSent": true, "endDate": "2025-04-30T07:07:28.639Z", "goal": "text", "participants": [ "text" ] }