This documentation has moved

XML API documentation can now be found at developer.openprovider.com. This page will remain available until September 2026, but will no longer be updated.

The XML API itself is not changing. Your existing integration continues to work.

API Module Reseller retrieveSettingsResellerRequest

From Openprovider API documentation

(Difference between revisions)
Jump to: navigation, search
WikiSysop (Talk | contribs)
(Created page with '==Module Reseller > Retrieve Settings== {| border="1" cellpadding="4" |- style="background-color:#BBBBBB;" |'''Module''' |reseller |- style="background-color:#EEEEEE;" |'''Comman…')
Newer edit →

Revision as of 08:41, 26 January 2011

Contents

Module Reseller > Retrieve Settings

Module reseller
Command name retrieveSettingsResellerRequest
Use Modifies the contact data in your reseller account
Input

-

Output
  • currency
  • language
  • isAutoRenewEnabled
  • minimumPayment
  • payMethods
  • signedContracts

Examples

Using PHP class

$request = new OP_Request;
$request->setCommand('retrieveSettingsResellerRequest')
 ->setAuth(array('username' => 'username', 'password' => 'password'))
 ->setArgs(array(
));

Raw XML

<?xml version="1.0" encoding="UTF-8"?>
<openXML>
  <credentials>
    <username>username</username>
    <password>password</password>
  </credentials>
  <retrieveSettingsResellerRequest />
</openXML>
<?xml version="1.0" encoding="UTF-8"?>
<openXML>
  <reply>
    0
    <desc />
    <data>
      <currency>EUR</currency>
      <language>EN</language>
      <isAutoRenewEnabled>1</isAutoRenewEnabled>
      <minimumPayment>5000</minimumPayment>
      <minimumWesternUnionPayment>500</minimumWesternUnionPayment>
      <CreditCardFeePercent>3</CreditCardFeePercent>
      <maximumIDealPayment>1000</maximumIDealPayment>
      <maximumCreditCardPayment>970</maximumCreditCardPayment>
      <payMethods>
        <array>
          <item>credit_card</item>
          <item>western_union</item>
          <item>bank</item>
        </array>
      </payMethods>
      <signedContracts>
        <array>
          <item>
            <id>eu</id>
            <version>20060221</version>
            <modificationDate>2006-02-21 14:33:32</modificationDate>
            <isSigned>1</isSigned>
            <signOnDate>2006-11-13 11:47:45</signOnDate>
          </item>
          <item>
            <id>com</id>
            <version>20060221</version>
            <modificationDate>2006-02-21 14:33:32</modificationDate>
            <isSigned>1</isSigned>
            <signOnDate>2006-09-15 11:07:23</signOnDate>
          </item>
          <item>
            <id>info</id>
            <version>20060221</version>
            <modificationDate>2006-02-21 14:33:32</modificationDate>
            <isSigned>1</isSigned>
            <signOnDate>2007-06-14 15:01:49</signOnDate>
          </item>
        </array>
      </signedContracts>
    </data>
  </reply>
</openXML>
Views
Personal tools