There has been a lapse in Environmental Protection Agency appropriations. EPA intends to keep the ENERGY STAR website, tools, and resources available, however they will not be updated regularly. If you submit a question, application, or request to EPA, it may not be processed during this period.
Web Service Documentation / Categories / Property Services / Edit Energy Performance Project
Updated on July 17, 2013
This web service updates an energy performance project based on the information provided in the XML request. The corresponding property must already be shared with you. The service returns the unique identifier to the updated energy performance project and a link to the corresponding web service to retrieve it.
25.0
PUT
/energyPerformanceProject/(energyPerformanceProjectId)
| Field Name | Value | Comments |
|---|---|---|
| Authorization | Basic credentials | |
| Content-Type | application/xml |
Yes
| Parameter Name | Description |
|---|---|
| energyPerformanceProjectId | Id to the energy performance project |
| Request/Response | Schema Name |
|---|---|
| Request | energyPerformanceProject.xsd |
| Response | response.xsd |
The following example updates a specific energy performance project that has an id of 765.
PUT /energyPerformanceProject/765<?xml version="1.0" encoding="UTF-8"?> <energyPerformanceProject> <category>Recommissioning (Stage 1)</category> <investmentCost>650000</investmentCost> <projectDescription>Recommissioning of Ventalation in building</projectDescription> <evaluationPeriod> <preImplementationDate>2011-08-01</preImplementationDate> <postImplementationDate>2012-08-31</postImplementationDate> </evaluationPeriod> <projectName>Duct Work (Phase 2)</projectName> <implementationDate>2011-08-01</implementationDate> <estimatedSavingsCost>750000</estimatedSavingsCost> </energyPerformanceProject>
The following example indicates that the energy performance project was successfully updated.
<?xml version="1.0" encoding="UTF-8"?>
<response status="Ok">
<id>765</id>
<links>
<link httpMethod="GET" link="/energyPerformanceProject/765" id="765" hint="Duct Work (Phase 2)" linkDescription="This is the GET url for this Energy Performance Project."/>
</links>
</response>
