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

Get Data Exchange Settings

Updated on February 11, 2015

Description

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

Version

22.0

HTTP Method

GET

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 None
Response dataExchangeSettings.xsd

Example Request

The following example retrieves settings that describe your data exchange service offerings.

GET  /dataExchangeSettings

Example Response

The following example returns your data exchange service offering settings.

<?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>
LIVE