Web Service Documentation / Categories / Meter Services / Edit Optional Onsite Green Power Renewable Detail
Updated on June 30, 2024
This web service updates the additional/optional onsite Green Power renewable detail information for a specific meter. Only one set of additional/optional information is tracked per meter. The corresponding meter must be an onsite renewable solar or wind meter. The meter must already be shared with you and you must have write access. To remove any values, you must omit the corresponding XML element(s) from the XML request. There is not a separate API that removes the entire information.
24.0
PUT
/meter/(meterId)/onsiteRenewableOptionalInfo
Field Name | Value | Comments |
---|---|---|
Authorization | Basic credentials | |
Content-Type | application/xml |
Yes
Parameter Name | Description |
---|---|
meterId | Id of the meter |
Request/Response | Schema Name |
---|---|
Request | onsiteRenewableOptionalInfo.xsd |
Response | response.xsd |
The following example updates the additional/optional onsite Green Power renewable detail record to a meter that has an id of 886412. Note that the existing project name value is removed since the XML element <projectName> is omitted from the XML body.
PUT /meter/886412/onsiteRenewableOptionalInfo<?xml version="1.0" encoding="UTF-8"?> <onsiteRenewableOptionalInfo> <renewableGenerationTechnologies> <technology>Solar PV- Carports</technology> <technology>Other</technology> </renewableGenerationTechnologies> <ratedCapacity uom="kW"> <value>123.4</value> </ratedCapacity> <operationDate>2022-02-01</operationDate> <numberOfInverters>3</numberOfInverters> <numberOfSolarPanels>12</numberOfSolarPanels> <totalCost>1945.12</totalCost> <incentiveOrRebateAmount>20000.5</incentiveOrRebateAmount> <estimatedSavings>12300.45</estimatedSavings> <notes>10 rounds of testing required.</notes> </onsiteRenewableOptionalInfo>
The following example shows the result of updating the additional/optional onsite Green Power renewable detail information.
<?xml version="1.0" encoding="UTF-8"?>
<response status="Ok">
<links>
<link id="886412" hint="Electric Solar Meter" linkDescription="This is the GET url for this Onsite Renewable Optional Info." link="/meter/886412/onsiteRenewableOptionalInfo" httpMethod="GET"/>
</links>
</response>