/dr/dr-events
curl -L \ --url 'https://api.ecosuite.io//dr/dr-events' \ --header 'Authorization: YOUR_API_KEY'
{ "events": [ { "name": "text", "startDate": "2025-02-23T22:56:11.868Z", "notificationDate": "2025-02-23T22:56:11.868Z", "notificationSent": true, "endDate": "2025-02-23T22:56:11.868Z", "goal": "text", "priority": "low", "participants": [ "text" ] } ] }
low
medium
high
curl -L \ --request POST \ --url 'https://api.ecosuite.io//dr/dr-events' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{"name":"text","startDate":"2025-02-23T22:56:11.868Z","notificationDate":"2025-02-23T22:56:11.868Z","endDate":"2025-02-23T22:56:11.868Z","goal":"text","priority":"low","participants":[null]}'
text
/dr/dr-events/{eventId}
curl -L \ --url 'https://api.ecosuite.io//dr/dr-events/{eventId}' \ --header 'Authorization: YOUR_API_KEY'
{ "cause": "text", "startDate": "2025-02-23T22:56:11.868Z", "dueDate": "2025-02-23T22:56:11.868Z", "endDate": "2025-02-23T22:56:11.868Z", "description": "text", "type": "energy", "priority": 1, "location": { "project": "text", "site": "text", "system": "text", "node": "text", "device": "text" }, "notes": [ { "noteDate": "2025-02-23T22:56:11.868Z", "note": "text" } ] }
curl -L \ --request PUT \ --url 'https://api.ecosuite.io//dr/dr-events/{eventId}' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{"name":"text","startDate":"2025-02-23T22:56:11.868Z","notificationDate":"2025-02-23T22:56:11.868Z","endDate":"2025-02-23T22:56:11.868Z","goal":"text","priority":"low","participants":[null]}'
curl -L \ --request DELETE \ --url 'https://api.ecosuite.io//dr/dr-events/{eventId}' \ --header 'Authorization: YOUR_API_KEY'
No body