示例ARB请求更新XML

示例ARB请求更新XML,xml,authorize.net,authorize.net-arb,Xml,Authorize.net,Authorize.net Arb,谁能给我一个ARB请求更新的xml示例 我需要更新金额和订阅名称。谢谢……) 我已经阅读了ARB XML指南,但在更新ARB时语法有问题。 <ARBUpdateSubscriptionRequest xmlns=\"AnetApi/xml/v1/schema/AnetApiSchema.xsd\"> <merchantAuthentication> <name> LoginId </name> &

谁能给我一个ARB请求更新的xml示例

我需要更新金额和订阅名称。谢谢……)

我已经阅读了ARB XML指南,但在更新ARB时语法有问题。


<ARBUpdateSubscriptionRequest xmlns=\"AnetApi/xml/v1/schema/AnetApiSchema.xsd\">  
    <merchantAuthentication>  
        <name> LoginId </name>  
        <transactionKey> Transaction Key </transactionKey>  
    </merchantAuthentication>  
    <subscriptionId> Subscription Id </subscriptionId>  
    <subscription>  
        <name> Subscription Name </name>  
        <amount> Amount </amount>
    </subscription>                 
</ARBUpdateSubscriptionRequest>
罗吉尼 事务密钥 订阅Id 订阅名称 数量
---------------------------------------------------------------------------------------
以下是成功创建新订阅所发送的XML。
---------------------------------------------------------------------------------------
mytestacct
112223344
样品
订阅样本
1.
月
2007-03-15
12
1.
10.29
0
4111111111111111
2008-08
约翰
史密斯
---------------------------------------------------------------------------------------
The following is the XML sent to successfully create a new subscription.
---------------------------------------------------------------------------------------

<?xml version="1.0" encoding="utf-8"?>
<ARBCreateSubscriptionRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd">
  <merchantAuthentication>
    <name>mytestacct</name>
    <transactionKey>112223344</transactionKey>
  </merchantAuthentication>
  <refId>Sample</refId>
  <subscription>
    <name>Sample subscription</name>
    <paymentSchedule>
      <interval>
        <length>1</length>
        <unit>months</unit>
      </interval>
      <startDate>2007-03-15</startDate>
      <totalOccurrences>12</totalOccurrences>
      <trialOccurrences>1</trialOccurrences>
    </paymentSchedule>
    <amount>10.29</amount>
    <trialAmount>0.00</trialAmount>
    <payment>
      <creditCard>
        <cardNumber>4111111111111111</cardNumber>
        <expirationDate>2008-08</expirationDate>
      </creditCard>
    </payment>
    <billTo>
      <firstName>John</firstName>
      <lastName>Smith</lastName>
    </billTo>
  </subscription>
</ARBCreateSubscriptionRequest>