Web Service Documentation / Categories / Basic Account Services / Edit Data Exchange Settings

Edit Data Exchange Settings

Updated on February 11, 2015

Description

This web service updates the various settings that describes your data exchange service offerings such as terms and conditions, supported fuel types, etc.

Version

22.0

HTTP Method

PUT

Resource URL

/dataExchangeSettings

Header

Field Name Value Comments
Authorization Basic credentials
Content-Type application/xml

Authorization Required

Yes

Parameters

None

XML Schemas

Request/Response Schema Name
Request dataExchangeSettings.xsd
Response response.xsd

Example Request

The following example updates your data exchange service offering settings.

PUT  /dataExchangeSettings

<?xml version="1.0" encoding="UTF-8"?> <dataExchangeSettings> <termsOfUse> <text>Terms and Conditions: You may use the ACME's services to interface with EPA's Data Exchange Platform only if you are a customer of ACME and agree to the detailed Terms and Conditions set forth on our company's website.</text> </termsOfUse> <supportedMeterTypes> <meterType>Electric</meterType> <meterType>Natural Gas</meterType> <meterType>Propane</meterType> </supportedMeterTypes> </dataExchangeSettings>

Example Response

The following example indicates that the updates were successfully made. It also returns a link to web service to retrieve the settings.

<?xml version="1.0" encoding="UTF-8"?>
<response status="Ok">
    <links>
        <link httpMethod="GET" link="/dataExchangeSettings" linkDescription="This is the GET url for your data exchange settings."/>
    </links>
</response>
TEST