Documentation de service Web / Catégories / Services des propriétés / Modifier un projet de rendement énergétique
Mise à jour le 17 juillet 2013
Ce service Web effectue une mise à jour d'un projet de rendement énergétique selon les informations fournies dans la demande XML. La propriété associée doit déjà être partagée avec vous. Le service Web retourne un identifiant unique pour le nouveau projet et un lien vers le service Web nécéssaire pour le récupérer.
22.0
PUT
/energyPerformanceProject/(energyPerformanceProjectId)
Nom du champ | Valeur | Commentaires |
---|---|---|
Autorisation | Basic authentifiant | |
Type de contenu | application/xml |
Oui
Nom du paramètre | Description |
---|---|
energyPerformanceProjectId | Identifiant du projet de rendement énergétique |
Demande/réponse | Nom de schéma |
---|---|
Demande | Aucun |
Réponse | response.xsd |
L'exemple ci-dessous effectue une mise à jour d'un projet de rendement énergétique avec l'identifiant 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>
L'exemple ci-dessous indique que le projet de rendement énergétique a été mis à jour avec succès.
<?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>