List the projects which have enrolled as participants in the demand response modules
/dr/participants
curl -L \ --url 'https://api.ecosuite.io//dr/participants' \ --header 'Authorization: YOUR_API_KEY'
{ "events": [ { "code": "text", "contactUser": "text", "phoneContact": "text" } ] }
Creates a demand response participant using the posted data.
curl -L \ --request POST \ --url 'https://api.ecosuite.io//dr/participants' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{"code":"text","contactUser":"text","phoneContact":"text"}'
text
/dr/participants/{participantId}
curl -L \ --url 'https://api.ecosuite.io//dr/participants/{participantId}' \ --header 'Authorization: YOUR_API_KEY'
{ "code": "text", "contactUser": "text", "phoneContact": "text" }
curl -L \ --request DELETE \ --url 'https://api.ecosuite.io//dr/participants/{participantId}' \ --header 'Authorization: YOUR_API_KEY'
No body