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

Get All Onsite Green Power Renewable Detail

Updated on June 30, 2024

Description

This web service retrieves the information for all of the onsite Green Power renewable detail records for a specific meter. Records are returned in sets of 1000 with pagination navigation links if necessary. The corresponding meter must be an onsite renewable solar or wind meter. The meter must already be shared with you.

Version

24.0

HTTP Method

GET

Resource URL

/meter/(meterId)/onsiteRenewableDetails

Header

Field Name Value Comments
Authorization Basic credentials

Authorization Required

Yes

Parameters

Parameter Name Description
meterId Id of the meter
page Optional. Indicates the page number of the result set to retrieve - defaults to 1. A maximum of 1000 records are returned per page.

XML Schemas

Request/Response Schema Name
Request None
Response onsiteRenewableDetail.xsd

Example Request

The following example retrieves all of the onsite Green Power renewable detail records for a meter that has an id of 178642976.

GET  /meter/178642976/onsiteRenewableDetails

Example Response

The following example shows the result of retreiving all of the onsite Green Power renewable detail records. Note that a pagination link is returned since there are over 1000 records.

<?xml version="1.0" encoding="UTF-8"?>
<onsiteRenewableDetails>
     <onsiteRenewableDetail>
          <id>16840</id>
          <currentAsOf>2006-08-22</currentAsOf>
          <energyUsedOnsite>
               <recOwnership>Arbitraged</recOwnership>
               <generationLocation>
                    <eGridSubRegion>NWPP</eGridSubRegion>
               </generationLocation>
               <greenPowerType>Competitive Product (direct purchase)</greenPowerType>
               <certifiedByGreene>true</certifiedByGreene>
          </energyUsedOnsite>
          <energyExportedToGrid>
               <recOwnership>Owned</recOwnership>
          </energyExportedToGrid>
          <audit>
               <createdBy>GreenESP</createdBy>
               <createdDate>2024-03-11T14:05:00.000-04:00</createdDate>
               <lastUpdatedBy>GreenESP</lastUpdatedBy>
               <lastUpdatedDate>2024-03-11T14:05:00.000-04:00</lastUpdatedDate>
          </audit>
     </onsiteRenewableDetail>
     <onsiteRenewableDetail>
          <id>16839</id>
          <currentAsOf>2006-08-21</currentAsOf>
          <energyUsedOnsite>
               <recOwnership>Arbitraged</recOwnership>
               <generationLocation>
                    <eGridSubRegion>NWPP</eGridSubRegion>
               </generationLocation>
               <greenPowerType>Competitive Product (direct purchase)</greenPowerType>
               <certifiedByGreene>true</certifiedByGreene>
          </energyUsedOnsite>
          <energyExportedToGrid>
               <recOwnership>Owned</recOwnership>
          </energyExportedToGrid>
          <audit>
               <createdBy>GreenESP</createdBy>
               <createdDate>2024-03-11T14:05:00.000-04:00</createdDate>
               <lastUpdatedBy>GreenESP</lastUpdatedBy>
               <lastUpdatedDate>2024-03-11T14:05:00.000-04:00</lastUpdatedDate>
          </audit>
     </onsiteRenewableDetail>

...

     <links>
          <link linkDescription="next page" link="/meter/178642976/onsiteRenewableDetails?page=2" httpMethod="GET"/>
     </links>
</onsiteRenewableDetails>
LIVE