Refer to the /schemas/participant endpoint for the full JSON Schema definition
GET //dr/participants/{participantId} HTTP/1.1 Host: api.ecosuite.io Authorization: YOUR_API_KEY Accept: */*
successful operation
{ "code": "text", "contactUser": "text", "phoneContact": "text" }
DELETE //dr/participants/{participantId} HTTP/1.1 Host: api.ecosuite.io Authorization: YOUR_API_KEY Accept: */*
No content
List the projects which have enrolled as participants in the demand response modules
GET //dr/participants HTTP/1.1 Host: api.ecosuite.io Authorization: YOUR_API_KEY Accept: */*
{ "events": [ { "code": "text", "contactUser": "text", "phoneContact": "text" } ] }
Creates a demand response participant using the posted data.
The participant Id.
POST //dr/participants HTTP/1.1 Host: api.ecosuite.io Authorization: YOUR_API_KEY Content-Type: application/json Accept: */* Content-Length: 58 { "code": "text", "contactUser": "text", "phoneContact": "text" }
text