Web Service Documentation / Categories / Basic Account Services / Edit Data Exchange Settings
Updated on February 11, 2015
This web service updates the various settings that describes your data exchange service offerings such as terms and conditions, supported fuel types, etc.
23.0
PUT
/dataExchangeSettings
Field Name | Value | Comments |
---|---|---|
Authorization | Basic credentials | |
Content-Type | application/xml |
Yes
None
Request/Response | Schema Name |
---|---|
Request | dataExchangeSettings.xsd |
Response | response.xsd |
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>
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>