Web Service Documentation / Categories / Meter Services / Get Optional Onsite Green Power Renewable Detail

Get Optional Onsite Green Power Renewable Detail

Updated on June 30, 2024

Description

This web service returns 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.

Version

24.0

HTTP Method

GET

Resource URL

/meter/(meterId)/onsiteRenewableOptionalInfo

Header

Field Name Value Comments
Authorization Basic credentials

Authorization Required

Yes

Parameters

Parameter Name Description
meterId Id of the meter

XML Schemas

Request/Response Schema Name
Request None
Response onsiteRenewableOptionalInfo.xsd

Example Request

The following example retrieves the additional/optional onsite Green Power renewable detail record to a meter that has an id of 886412.

GET  /meter/886412/onsiteRenewableOptionalInfo

Example Response

The following example shows the result of retreiving the onsite Green Power renewable detail record.

<?xml version="1.0" encoding="UTF-8"?>
<onsiteRenewableOptionalInfo>
     <projectName>Project Solar Panels</projectName>
     <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><![CDATA[10 rounds of testing required.]]></notes>
     <audit>
          <createdBy>delta1</createdBy>
          <createdDate>2024-04-08T09:57:44.000-04:00</createdDate>
          <lastUpdatedBy>delta1</lastUpdatedBy>
          <lastUpdatedDate>2024-04-08T09:57:44.000-04:00</lastUpdatedDate>
     </audit>
</onsiteRenewableOptionalInfo>
TEST