The Create Subscription request enables you to set up a subscription, which associates a shopper with a plan to bill on an ongoing basis.
For more information about working with subscriptions, see the Subscriptions tutorial.
Testing subscription charges in sandbox
After creating a subscription in sandbox, you can simulate a recurring charge event and trigger associated IPNs, emails, and invoices. Visit the Subscriptions Guide to learn how.
Request Content
recurring-subscription
container required, contains the following properties (see recurring-subscription):
plan-id
integer required
vendors-info
container optional (see vendors-info)
vaulted-shopper-id
integer optional - do not include if sending payer-info
payer-info
container optional - do not include if sending vaulted-shopper-id
(see payer-info)
payment-source
container required for payer-info
;
optional for vaulted-shopper-id
(see payment-source)
quantity
integer optional
soft-descriptor
string optional
descriptor-phone-number
string optional
authorized-by-shopper
boolean required for ACH/ECP and SEPA Direct Debit value must be true
override-trial-period-days
integer optional
override-recurring-charge-amount
decimal optional
override-initial-charge-amount
decimal optional
three-d-secure
container optional (see three-d-secure)
transaction-fraud-info
container optional (see transaction-fraud-info)
level-3-data
container optional (see level-3-data)
initial-tax-reference
string optional
recurring-tax-reference
string optional
network-transaction-info
object optional (refer to network-transaction-info)
transaction-initiator
string optional
Response Details
If successful, the response HTTP status code is 200 OK.
The response body contains the recurring-subscription resource.
The subscription-id
appears in the response body and the location header (unless ACH or SEPA DD was used).
Examples
Request Examples
curl -v -X POST https://sandbox.bluesnap.com/services/2/recurring/subscriptions \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<recurring-subscription xmlns="http://ws.plimus.com">
<plan-id>2283845</plan-id>
<payer-info>
<first-name>John</first-name>
<last-name>Doe</last-name>
<zip>12345</zip>
<phone>1234567890</phone>
</payer-info>
<payment-source>
<credit-card-info>
<credit-card>
<card-number>4111111111111111</card-number>
<security-code>111</security-code>
<expiration-month>07</expiration-month>
<expiration-year>2023</expiration-year>
</credit-card>
</credit-card-info>
</payment-source>
<transaction-fraud-info>
<fraud-session-id>1234</fraud-session-id>
<customer-id>121341</customer-id>
<customer-creation-date>2021-08-05</customer-creation-date>
</transaction-fraud-info>
</recurring-subscription>'
curl -v -X POST https://sandbox.bluesnap.com/services/2/recurring/subscriptions \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<recurring-subscription xmlns="http://ws.plimus.com">
<plan-id>2283845</plan-id>
<vaulted-shopper-id>20769005</vaulted-shopper-id>
<quantity>2</quantity>
<soft-descriptor>Merchant name</soft-descriptor>
<override-trial-period-days>10</override-trial-period-days>
<override-recurring-charge-amount>29.99</override-recurring-charge-amount>
<override-initial-charge-amount>10.5</override-initial-charge-amount>
<transaction-fraud-info>
<fraud-session-id>1234</fraud-session-id>
<shopper-ip-address>123.12.134.1</shopper-ip-address>
<company>Company Name</company>
<shipping-contact-info>
<last-name>John</last-name>
<first-name>Doe</first-name>
<country>US</country>
<state>AK</state>
<city>Juneau</city>
<address1>1 Main St</address1>
<address2>Apt 2</address2>
<zip>12345</zip>
</shipping-contact-info>
</transaction-fraud-info>
</recurring-subscription>'
curl -v -X POST https://sandbox.bluesnap.com/services/2/recurring/subscriptions \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<recurring-subscription xmlns="http://ws.plimus.com">
<plan-id>2283845</plan-id>
<vaulted-shopper-id>20769005</vaulted-shopper-id>
<payment-source>
<credit-card-info>
<credit-card>
<card-last-four-digits>9299</card-last-four-digits>
<card-type>VISA</card-type>
</credit-card>
</credit-card-info>
</payment-source>
</recurring-subscription>'
curl -v -X POST https://sandbox.bluesnap.com/services/2/recurring/subscriptions \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<recurring-subscription xmlns="http://ws.plimus.com">
<plan-id>2186278</plan-id>
<payer-info>
<first-name>John</first-name>
<last-name>Doe</last-name>
<zip>12345</zip>
<phone>1234567890</phone>
</payer-info>
<payment-source>
<pf-token>339110a75e2cdbb5f5f2cea8d7cd8af261ad7c89fb0ce1aae_</pf-token>
</payment-source>
</recurring-subscription>'
curl -v -X POST https://sandbox.bluesnap.com/services/2/recurring/subscriptions \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<recurring-subscription xmlns="http://ws.plimus.com">
<plan-id>2283845</plan-id>
<vendors-info>
<vendor-info>
<vendor-id>10398032</vendor-id>
</vendor-info>
</vendors-info>
<payer-info>
<first-name>John</first-name>
<last-name>Doe</last-name>
<zip>12345</zip>
<phone>1234567890</phone>
</payer-info>
<payment-source>
<credit-card-info>
<credit-card>
<card-number>4111111111111111</card-number>
<security-code>111</security-code>
<expiration-month>07</expiration-month>
<expiration-year>2023</expiration-year>
</credit-card>
</credit-card-info>
</payment-source>
<transaction-fraud-info>
<fraud-session-id>1234</fraud-session-id>
</transaction-fraud-info>
</recurring-subscription>'
curl -v -X POST https://sandbox.bluesnap.com/services/2/recurring/subscriptions \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<recurring-subscription xmlns="http://ws.plimus.com">
<planId>2193990</planId>
<paymentSource>
<wallet>
<walletType>APPLE_PAY</walletType>
<encodedPaymentToken>eyJiaWxsaW5nQ29udGFjdCI6eyJhZGRyZ...</encodedPaymentToken>
</wallet>
</paymentSource>
</recurring-subscription>'
curl -v -X POST https://sandbox.bluesnap.com/services/2/recurring/subscriptions \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<recurring-subscription xmlns="http://ws.plimus.com">
<plan-id>2283845</plan-id>
<authorized-by-shopper>true</authorized-by-shopper>
<payer-info>
<first-name>John</first-name>
<last-name>Doe</last-name>
<zip>12345</zip>
<country>fr</country>
<phone>1234567890</phone>
</payer-info>
<payment-source>
<sepa-direct-debit-info>
<sepa-direct-debit>
<iban>DE09100100101234567893</iban>
</sepa-direct-debit>
</sepa-direct-debit-info>
</payment-source>
</recurring-subscription>'
curl -v -X POST https://sandbox.bluesnap.com/services/2/recurring/subscriptions \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<recurring-subscription xmlns="http://ws.plimus.com">
<plan-id>2380391</plan-id>
<authorized-by-shopper>true</authorized-by-shopper>
<payer-info>
<first-name>Jane</first-name>
<last-name>Doe</last-name>
<zip>12345</zip>
<country>us</country>
<phone>1234567890</phone>
</payer-info>
<payment-source>
<ecp-info>
<ecp>
<account-number>4099999992</account-number>
<routing-number>011075150</routing-number>
<account-type>CONSUMER_CHECKING</account-type>
</ecp>
</ecp-info>
</payment-source>
</recurring-subscription>'
curl -v -X POST https://sandbox.bluesnap.com/services/2/recurring/subscriptions \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<recurring-subscription xmlns="http://ws.plimus.com">
<plan-id>2283845</plan-id>
<payment-source>
<wallet>
<wallet-type>GOOGLE_PAY</wallet-type>
<encoded-payment-token>eyJwYXltZW50TWV0aG9kVG9rZW4iOnsidG99</encoded-payment-token>
</wallet>
</payment-source>
</recurring-subscription>'
curl -v -X POST https://sandbox.bluesnap.com/services/2/recurring/subscriptions \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<recurring-subscription xmlns="http://ws.plimus.com">
<plan-id>2205010</plan-id>
<payer-info>
<first-name>PIFirst-name</first-name>
<last-name>PILast-name</last-name>
<zip>PIZip</zip>
<email>[email protected]</email>
<country>us</country>
<address>PIaddress1</address>
<address2>PIaddress2</address2>
<city>PICity</city>
</payer-info>
<payment-source>
<credit-card-info>
<credit-card>
<card-number>5555555555554444</card-number>
<card-type>MASTERCARD</card-type>
<security-code>111</security-code>
<expiration-month>07</expiration-month>
<expiration-year>2023</expiration-year>
</credit-card>
<billing-contact-info>
<address1>BiAddress1</address1>
<address2>BiAddress2</address2>
<city>BiCity</city>
<country>us</country>
<first-name>BiFirst-name</first-name >
<last-name >BiLast-name</last-name >
<state>CA</state>
<zip>BiZip</zip>
</billing-contact-info>
</credit-card-info>
</payment-source>
<transaction-fraud-info>
<fraud-session-id>1234</fraud-session-id>
</transaction-fraud-info>
</recurring-subscription>'
curl -v -X POST https://sandbox.bluesnap.com/services/2/recurring/subscriptions \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<recurring-subscription xmlns="http://ws.plimus.com">
<payment-source>
<credit-card-info>
<billing-contact-info>
<address1>BiAddress1</address1>
<address2>BiAddress2</address2>
<city>BiCity</city>
<country>us</country>
<first-name>BiFirst-name</first-name>
<last-name>BiLast-name</last-name>
<state>CA</state>
<zip>BiZip</zip>
</billing-contact-info>
<credit-card>
<card-number>5555555555554444</card-number>
<cardType>MASTERCARD</cardType>
<expiration-month>07</expiration-month>
<expiration-year>2023</expiration-year>
<security-code>111</security-code>
</credit-card>
</credit-card-info>
</payment-source>
<plan-id>2205010</plan-id>
<vaulted-shopper-id>19641522</vaulted-shopper-id>
</recurring-subscription>'
curl -v -X POST https://sandbox.bluesnap.com/services/2/recurring/subscriptions \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<recurring-subscription xmlns="http://ws.plimus.com">
<payer-info>
<address>PIaddress1</address>
<address2>PIaddress2</address2>
<city>PICity</city>
<country>il</country>
<email>[email protected]</email>
<first-name>PIFirst-name</first-name>
<last-name>PILast-name</last-name>
<zip>PIZip</zip>
</payer-info>
<payment-source>
<credit-card-info>
<billing-contact-info>
<address1>BiAddress1</address1>
<address2>BiAddress2</address2>
<city>BiCity</city>
<country>us</country>
<first-name>BiFirst-name</first-name>
<last-name>BiLast-name</last-name>
<state>CA</state>
<zip>BiZip</zip>
</billing-contact-info>
<pf-token>c72486e81b9e12704f02f097c9536cda9097868247d3c287172e03e045efb19a_</pf-token>
</credit-card-info>
</payment-source>
<plan-id>2205010</plan-id>
</recurring-subscription>'
curl -v -X POST https://sandbox.bluesnap.com/services/2/recurring/subscriptions \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<recurring-subscription xmlns="http://ws.plimus.com">
<payment-source>
<credit-card-info>
<billing-contact-info>
<address1>BiAddress1</address1>
<address2>BiAddress2</address2>
<city>BiCity</city>
<country>us</country>
<first-name>BiFirst-name</first-name>
<last-name>BiLast-name</last-name>
<state>CA</state>
<zip>BiZip</zip>
</billing-contact-info>
<pf-token>50fe35c1f5d916f638aa7535531c0f8da64bbe1142e877008283c81ce9e11a80_</pf-token>
</credit-card-info>
</payment-source>
<plan-id>2205010</plan-id>
<vaulted-shopper-id>19641506</vaulted-shopper-id>
</recurring-subscription>'
curl -v -X POST https://sandbox.bluesnap.com/services/2/recurring/subscriptions \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
-d '
<recurring-subscription xmlns="http://ws.plimus.com">
<plan-id>2190390</plan-id>
<vaulted-shopper-id>19574268</vaulted-shopper-id>
<three-d-secure>
<three-d-secure-reference-id>4911</three-d-secure-reference-id>
</three-d-secure>
</recurring-subscription>
Response Examples
HTTP/ 1.1 200 OK
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<recurring-subscription xmlns="http://ws.plimus.com">
<subscription-id>8492717</subscription-id>
<plan-id>2283845</plan-id>
<vaulted-shopper-id>21188909</vaulted-shopper-id>
<status>ACTIVE</status>
<quantity>1</quantity>
<soft-descriptor>BLS*default_descriptor</soft-descriptor>
<charge-frequency>MONTHLY</charge-frequency>
<trial-period-days>14</trial-period-days>
<recurring-charge-amount>29.99</recurring-charge-amount>
<currency>USD</currency>
<initial-charge-amount>100.00</initial-charge-amount>
<auto-renew>true</auto-renew>
<next-charge-date>2021-08-16</next-charge-date>
<payer-info>
<first-name>John</first-name>
<last-name>Doe</last-name>
</payer-info>
<payment-source>
<credit-card-info>
<billing-contact-info>
<first-name>John</first-name>
<last-name>Doe</last-name>
</billing-contact-info>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>VISA</card-type>
<card-sub-type>CREDIT</card-sub-type>
<card-category>CLASSIC</card-category>
<expiration-month>07</expiration-month>
<expiration-year>2023</expiration-year>
</credit-card>
</credit-card-info>
</payment-source>
<charge>
<charge-id>12117877</charge-id>
<subscription-id>8492717</subscription-id>
<plan-id>2283845</plan-id>
<vaulted-shopper-id>21188909</vaulted-shopper-id>
<transaction-id>1012463333</transaction-id>
<transaction-date>2021-08-02</transaction-date>
<amount>100.00</amount>
<currency>USD</currency>
<soft-descriptor>BLS*default_descriptor</soft-descriptor>
<payment-source>
<credit-card-info>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>VISA</card-type>
<card-sub-type>CREDIT</card-sub-type>
<expiration-month>07</expiration-month>
<expiration-year>2023</expiration-year>
</credit-card>
</credit-card-info>
</payment-source>
<charge-info>
<from-date>2021-08-02</from-date>
<to-date>2021-08-16</to-date>
<charge-type>INITIAL</charge-type>
</charge-info>
</charge>
<fraud-result-info>
<device-data-collector>Y</device-data-collector>
</fraud-result-info>
</recurring-subscription>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<recurring-subscription xmlns="http://ws.plimus.com">
<subscriptionId>39555010</subscriptionId>
<planId>2193990</planId>
<vaultedShopperId>19598232</vaultedShopperId>
<status>ACTIVE</status>
<quantity>1</quantity>
<softDescriptor>BLS*CodeDiggers</softDescriptor>
<chargeFrequency>WEEKLY</chargeFrequency>
<recurringChargeAmount>4.2</recurringChargeAmount>
<currency>USD</currency>
<autoRenew>true</autoRenew>
<nextChargeDate>2021-09-23</nextChargeDate>
<payerInfo>
<firstName>John</firstName>
<lastName>Smith</lastName>
<email>[email protected]</email>
<country>us</country>
<state>MA</state>
<address>800 South Street</address>
<city>Waltham</city>
<zip>01822</zip>
</payerInfo>
<paymentSource>
<wallet>
<walletType>APPLE_PAY</walletType>
<billingContactInfo>
<firstName>John</firstName>
<lastName>Smith</lastName>
<address1>800 South Street</address1>
<city>Waltham</city>
<state>MA</state>
<zip>01822</zip>
<country>us</country>
</billingContactInfo>
<applePay>
<cardLastFourDigits>1471</cardLastFourDigits>
<cardType>MASTERCARD</cardType>
<cardSubType>DEBIT</cardSubType>
<cardCategory>ACQUIRER ONLY</cardCategory>
<binCategory>CONSUMER</binCategory>
<cardRegulated>N</cardRegulated>
<issuingCountryCode>us</issuingCountryCode>
<issuingBank>MASTERCARD - MEMBER TEST FACILITY</issuingBank>
<dpanLastFourDigits>6937</dpanLastFourDigits>
<dpanExpirationMonth>9</dpanExpirationMonth>
<dpanExpirationYear>2022</dpanExpirationYear>
</applePay>
<tokenizedCard>
<dpanExpirationMonth>9</dpanExpirationMonth>
<dpanExpirationYear>2022</dpanExpirationYear>
<dpanLastFourDigits>6937</dpanLastFourDigits>
<cardLastFourDigits>1471</cardLastFourDigits>
<cardType>MASTERCARD</cardType>
<cardSubType>DEBIT</cardSubType>
<cardCategory>ACQUIRER ONLY</cardCategory>
<binCategory>CONSUMER</binCategory>
<cardRegulated>N</cardRegulated>
<issuingCountryCode>us</issuingCountryCode>
<issuingBank>MASTERCARD - MEMBER TEST FACILITY</issuingBank>
</tokenizedCard>
</wallet>
</paymentSource>
<charge>
<chargeId>175051</chargeId>
<subscriptionId>39555010</subscriptionId>
<planId>2193990</planId>
<vaultedShopperId>19598232</vaultedShopperId>
<transactionId>38599976</transactionId>
<transactionDate>2021-09-16</transactionDate>
<amount>4.2</amount>
<currency>USD</currency>
<softDescriptor>BLS*CodeDiggers</softDescriptor>
<paymentSource>
<wallet>
<walletType>APPLE_PAY</walletType>
<billingContactInfo>
<firstName>John</firstName>
<lastName>Smith</lastName>
<address1>800 South Street</address1>
<city>Waltham</city>
<state>MA</state>
<zip>01822</zip>
<country>us</country>
</billingContactInfo>
<applePay>
<cardLastFourDigits>1471</cardLastFourDigits>
<cardType>MASTERCARD</cardType>
<cardSubType>DEBIT</cardSubType>
<cardCategory>ACQUIRER ONLY</cardCategory>
<binCategory>CONSUMER</binCategory>
<cardRegulated>N</cardRegulated>
<issuingCountryCode>us</issuingCountryCode>
<issuingBank>MASTERCARD - MEMBER TEST FACILITY</issuingBank>
<dpanLastFourDigits>6937</dpanLastFourDigits>
<dpanExpirationMonth>9</dpanExpirationMonth>
<dpanExpirationYear>2022</dpanExpirationYear>
</applePay>
<tokenizedCard>
<dpanExpirationMonth>9</dpanExpirationMonth>
<dpanExpirationYear>2022</dpanExpirationYear>
<dpanLastFourDigits>6937</dpanLastFourDigits>
<cardLastFourDigits>1471</cardLastFourDigits>
<cardType>MASTERCARD</cardType>
<cardSubType>DEBIT</cardSubType>
<cardCategory>ACQUIRER ONLY</cardCategory>
<binCategory>CONSUMER</binCategory>
<cardRegulated>N</cardRegulated>
<issuingCountryCode>us</issuingCountryCode>
<issuingBank>MASTERCARD - MEMBER TEST FACILITY</issuingBank>
</tokenizedCard>
</wallet>
</paymentSource>
<chargeInfo>
<fromDate>2021-09-16</fromDate>
<toDate>2021-09-23</toDate>
<chargeType>INITIAL</chargeType>
</chargeInfo>
<processingInfo>
<processingStatus>SUCCESS</processingStatus>
<authorizationCode>666151</authorizationCode>
</processingInfo>
</charge>
<fraudResultInfo/>
</recurring-subscription>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<recurring-subscription xmlns="http://ws.plimus.com">
<plan-id>2436197</plan-id>
<vaulted-shopper-id>21846521</vaulted-shopper-id>
<soft-descriptor>Oooops LTD</soft-descriptor>
<payer-info>
<first-name>John</first-name>
<last-name>Doe</last-name>
<country>fr</country>
<zip>12345</zip>
<phone>1234567890</phone>
</payer-info>
<payment-source>
<sepa-direct-debit-info>
<sepa-direct-debit>
<iban-first-four>DE09</iban-first-four>
<iban-last-four>7893</iban-last-four>
<mandate-id>Ooo156577</mandate-id>
<mandate-date>01-Aug-17</mandate-date>
<pre-notification-text>The amount of 29.99 EUR will be collected using SEPA Direct Debit with Mandate Ooo156577 from your bank account IBAN DE09XXXXXX7893 in the next few days. Please ensure sufficient funds in your account.</pre-notification-text>
</sepa-direct-debit>
</sepa-direct-debit-info>
</payment-source>
<charge>
<plan-id>2436197</plan-id>
<vaulted-shopper-id>21846521</vaulted-shopper-id>
<transaction-id>1011278923</transaction-id>
<transaction-date>2017-08-01</transaction-date>
<amount>29.99</amount>
<currency>EUR</currency>
<soft-descriptor>Oooops LTD</soft-descriptor>
<payment-source>
<sepa-direct-debit-info>
<sepa-direct-debit>
<iban-first-four>DE09</iban-first-four>
<iban-last-four>7893</iban-last-four>
<mandate-id>Ooo156577</mandate-id>
<mandate-date>01-Aug-19</mandate-date>
<pre-notification-text>The amount of 29.99 EUR will be collected using SEPA Direct Debit with Mandate Ooo156577 from your bank account IBAN DE09XXXXXX7893 in the next few days. Please ensure sufficient funds in your account.</pre-notification-text>
</sepa-direct-debit>
</sepa-direct-debit-info>
</payment-source>
<processing-info>
<processing-status>PENDING</processing-status>
</processing-info>
</charge>
</recurring-subscription>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<recurring-subscription xmlns="http://ws.plimus.com">
<plan-id>2380391</plan-id>
<vaulted-shopper-id>22331787</vaulted-shopper-id>
<soft-descriptor>default_descriptor</soft-descriptor>
<payer-info>
<first-name>Jane</first-name>
<last-name>Doe</last-name>
<country>us</country>
<zip>12345</zip>
<phone>1234567890</phone>
</payer-info>
<payment-source>
<ecp-info>
<ecp>
<account-number>4099999992</account-number>
<routing-number>011075150</routing-number>
<account-type>CONSUMER_CHECKING</account-type>
</ecp>
</ecp-info>
</payment-source>
<charge>
<plan-id>2380391</plan-id>
<vaulted-shopper-id>22331787</vaulted-shopper-id>
<transaction-id>1015616051</transaction-id>
<transaction-date>2019-01-26</transaction-date>
<amount>65.00</amount>
<currency>USD</currency>
<soft-descriptor>default_descriptor</soft-descriptor>
<payment-source>
<ecp-info>
<ecp>
<account-number>4099999992</account-number>
<routing-number>011075150</routing-number>
<account-type>CONSUMER_CHECKING</account-type>
</ecp>
</ecp-info>
</payment-source>
<charge-info>
<charge-type>INITIAL</charge-type>
</charge-info>
<processing-info>
<processing-status>PENDING</processing-status>
</processing-info>
</charge>
</recurring-subscription>
<card-transaction>
<autoRenew>true</autoRenew>
<charge>
<amount>1.99</amount>
<chargeId>250389</chargeId>
<chargeInfo>
<chargeType>INITIAL</chargeType>
<fromDate>2018-09-05</fromDate>
<toDate>2018-10-05</toDate>
</chargeInfo>
<currency>USD</currency>
<paymentSource>
<creditCardInfo>
<creditCard>
<cardCategory>CLASSIC</cardCategory>
<cardLastFourDigits>1111</cardLastFourDigits>
<cardSubType>CREDIT</cardSubType>
<cardType>VISA</cardType>
<expirationMonth>09</expirationMonth>
<expirationYear>2023</expirationYear>
</creditCard>
</creditCardInfo>
</paymentSource>
<planId>2203980</planId>
<processingInfo>
<processingStatus>SUCCESS</processingStatus>
</processingInfo>
<softDescriptor>BLS</softDescriptor>
<subscriptionId>39594120</subscriptionId>
<transactionDate>2019-09-05</transactionDate>
<transactionId>38589782</transactionId>
<vaultedShopperId>19637272</vaultedShopperId>
</charge>
<chargeFrequency>MONTHLY</chargeFrequency>
<currency>USD</currency>
<fraudResultInfo>
<deviceDataCollector>N</deviceDataCollector>
</fraudResultInfo>
<nextChargeDate>2019-10-05</nextChargeDate>
<payerInfo>
<address>32 some street</address>
<city>some city</city>
<country>us</country>
<email>test&#x40;gmail.com</email>
<firstName>test first name</firstName>
<lastName>test last name</lastName>
<phone>456276576</phone>
<state>MA</state>
<zip>
<element>12345</element>
<element>02186</element>
</zip>
</payerInfo>
<paymentSource>
<creditCardInfo>
<billingContactInfo>
<address>32 some street</address>
<city>some city</city>
<country>us</country>
<firstName>test first name</firstName>
<lastName>test last name</lastName>
<state>MA</state>
<zip>
<element>123456</element>
<element>02186</element>
</zip>
</billingContactInfo>
<creditCard>
<cardCategory>CLASSIC</cardCategory>
<cardLastFourDigits>1111</cardLastFourDigits>
<cardSubType>CREDIT</cardSubType>
<cardType>VISA</cardType>
<expirationMonth>09</expirationMonth>
<expirationYear>2023</expirationYear>
</creditCard>
</creditCardInfo>
</paymentSource>
<planId>2203980</planId>
<quantity>1</quantity>
<recurringChargeAmount>1.99</recurringChargeAmount>
<softDescriptor>BLS</softDescriptor>
<status>ACTIVE</status>
<subscriptionId>39594120</subscriptionId>
<vaultedShopperId>19637272</vaultedShopperId>
</card-transaction>
<card-transaction>
<amount>11</amount>
<cardHolderInfo>
<country>us</country>
<firstName>test first name</firstName>
<lastName>test last name</lastName>
<zip>123456</zip>
</cardHolderInfo>
<cardTransactionType>AUTH_ONLY</cardTransactionType>
<currency>USD</currency>
<processingInfo>
<processingStatus>success</processingStatus>
</processingInfo>
<recurringTransaction>ECOMMERCE</recurringTransaction>
<softDescriptor>BLS&#x2a;DescTest</softDescriptor>
<transactionId>1012751937</transactionId>
<vaultedShopperId>21289371</vaultedShopperId>
<wallet>
<billingContactInfo>
<country>us</country>
<firstName>test first name</firstName>
<lastName>test last name</lastName>
<zip>12345</zip>
</billingContactInfo>
<tokenizedCard>
<cardLastFourDigits>1111</cardLastFourDigits>
<cardSubType>CREDIT</cardSubType>
<cardType>VISA</cardType>
<dpanExpirationMonth>9</dpanExpirationMonth>
<dpanExpirationYear>2023</dpanExpirationYear>
<dpanLastFourDigits>2222</dpanLastFourDigits>
</tokenizedCard>
<walletType>GOOGLE_PAY</walletType>
</wallet>
</card-transaction>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<recurring-subscription xmlns="http://ws.plimus.com">
<subscription-id>39600216</subscription-id>
<plan-id>2205010</plan-id>
<vaulted-shopper-id>19643286</vaulted-shopper-id>
<status>ACTIVE</status>
<quantity>1</quantity>
<soft-descriptor>BLS*try</soft-descriptor>
<charge-frequency>MONTHLY</charge-frequency>
<recurring-charge-amount>1.99</recurring-charge-amount>
<currency>USD</currency>
<auto-renew>true</auto-renew>
<next-charge-date>2019-04-05</next-charge-date>
<payer-info>
<first-name>PIFirst-name</first-name>
<last-name>PILast-name</last-name>
<email>tt@gmail.com</email>
<country>us</country>
<address>PIaddress1</address>
<address2>PIaddress2</address2>
<city>PICity</city>
<zip>PIZip</zip>
</payer-info>
<payment-source>
<credit-card-info>
<billing-contact-info>
<first-name>BiFirst-name</first-name>
<last-name>BiLast-name</last-name>
<address1>BiAddress1</address1>
<address2>BiAddress2</address2>
<city>BiCity</city>
<state>CA</state>
<zip>BiZip</zip>
<country>us</country>
</billing-contact-info>
<credit-card>
<card-last-four-digits>4444</card-last-four-digits>
<card-type>MASTERCARD</card-type>
<bin-category>CONSUMER</bin-category>
<card-regulated>N</card-regulated>
<expiration-month>07</expiration-month>
<expiration-year>2023</expiration-year>
<issuing-country-code>BR</issuing-country-code>
</credit-card>
</credit-card-info>
</payment-source>
<charge>
<charge-id>251829</charge-id>
<subscription-id>39600216</subscription-id>
<plan-id>2205010</plan-id>
<vaulted-shopper-id>19643286</vaulted-shopper-id>
<transaction-id>38599800</transaction-id>
<transaction-date>2019-03-05</transaction-date>
<amount>1.99</amount>
<currency>USD</currency>
<soft-descriptor>BLS*try</soft-descriptor>
<payment-source>
<credit-card-info>
<billing-contact-info>
<first-name>BiFirst-name</first-name>
<last-name>BiLast-name</last-name>
<address1>BiAddress1</address1>
<address2>BiAddress2</address2>
<city>BiCity</city>
<state>CA</state>
<zip>BiZip</zip>
<country>us</country>
</billing-contact-info>
<credit-card>
<card-last-four-digits>4444</card-last-four-digits>
<card-type>MASTERCARD</card-type>
<bin-category>CONSUMER</bin-category>
<expiration-month>07</expiration-month>
<expiration-year>2023</expiration-year>
</credit-card>
</credit-card-info>
</payment-source>
<charge-info>
<from-date>2019-03-05</from-date>
<to-date>2019-04-05</to-date>
<charge-type>INITIAL</charge-type>
</charge-info>
<processing-info>
<processing-status>SUCCESS</processing-status>
</processing-info>
</charge>
<fraud-result-info>
<device-data-collector>N</device-data-collector>
</fraud-result-info>
</recurring-subscription>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<recurring-subscription xmlns="http://ws.plimus.com">
<subscription-id>39600220</subscription-id>
<plan-id>2205010</plan-id>
<vaulted-shopper-id>19641522</vaulted-shopper-id>
<status>ACTIVE</status>
<quantity>1</quantity>
<soft-descriptor>BLS*try</soft-descriptor>
<charge-frequency>MONTHLY</charge-frequency>
<recurring-charge-amount>1.99</recurring-charge-amount>
<currency>USD</currency>
<auto-renew>true</auto-renew>
<next-charge-date>2019-04-05</next-charge-date>
<payer-info>
<first-name>Shevie</first-name>
<last-name>Chen</last-name>
<country>us</country>
</payer-info>
<payment-source>
<credit-card-info>
<billing-contact-info>
<first-name>BiFirst-name</first-name>
<last-name>BiLast-name</last-name>
<address1>BiAddress1</address1>
<address2>BiAddress2</address2>
<city>BiCity</city>
<state>CA</state>
<zip>BiZip</zip>
<country>us</country>
</billing-contact-info>
<credit-card>
<card-last-four-digits>4444</card-last-four-digits>
<card-type>MASTERCARD</card-type>
<bin-category>CONSUMER</bin-category>
<card-regulated>N</card-regulated>
<expiration-month>07</expiration-month>
<expiration-year>2023</expiration-year>
<issuing-country-code>BR</issuing-country-code>
</credit-card>
</credit-card-info>
</payment-source>
<charge>
<charge-id>251837</charge-id>
<subscription-id>39600220</subscription-id>
<plan-id>2205010</plan-id>
<vaulted-shopper-id>19641522</vaulted-shopper-id>
<transaction-id>38599808</transaction-id>
<transaction-date>2019-03-05</transaction-date>
<amount>1.99</amount>
<currency>USD</currency>
<soft-descriptor>BLS*try</soft-descriptor>
<payment-source>
<credit-card-info>
<billing-contact-info>
<first-name>BiFirst-name</first-name>
<last-name>BiLast-name</last-name>
<address1>BiAddress1</address1>
<address2>BiAddress2</address2>
<city>BiCity</city>
<state>CA</state>
<zip>BiZip</zip>
<country>us</country>
</billing-contact-info>
<credit-card>
<card-last-four-digits>4444</card-last-four-digits>
<card-type>MASTERCARD</card-type>
<bin-category>CONSUMER</bin-category>
<expiration-month>07</expiration-month>
<expiration-year>2023</expiration-year>
</credit-card>
</credit-card-info>
</payment-source>
<charge-info>
<from-date>2019-03-05</from-date>
<to-date>2019-04-05</to-date>
<charge-type>INITIAL</charge-type>
</charge-info>
<processing-info>
<processing-status>SUCCESS</processing-status>
</processing-info>
</charge>
<fraud-result-info>
<device-data-collector>N</device-data-collector>
</fraud-result-info>
</recurring-subscription>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<recurring-subscription xmlns="http://ws.plimus.com">
<subscription-id>39600222</subscription-id>
<plan-id>2205010</plan-id>
<vaulted-shopper-id>19643290</vaulted-shopper-id>
<status>ACTIVE</status>
<quantity>1</quantity>
<soft-descriptor>BLS*try</soft-descriptor>
<charge-frequency>MONTHLY</charge-frequency>
<recurring-charge-amount>1.99</recurring-charge-amount>
<currency>USD</currency>
<auto-renew>true</auto-renew>
<next-charge-date>2019-04-05</next-charge-date>
<payer-info>
<first-name>PIFirst-name</first-name>
<last-name>PILast-name</last-name>
<email>tt@gmail.com</email>
<country>il</country>
<address>PIaddress1</address>
<address2>PIaddress2</address2>
<city>PICity</city>
<zip>PIZip</zip>
</payer-info>
<payment-source>
<credit-card-info>
<billing-contact-info>
<first-name>BiFirst-name</first-name>
<last-name>BiLast-name</last-name>
<address1>BiAddress1</address1>
<address2>BiAddress2</address2>
<city>BiCity</city>
<state>CA</state>
<zip>BiZip</zip>
<country>us</country>
</billing-contact-info>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>VISA</card-type>
<bin-category>CONSUMER</bin-category>
<card-regulated>Y</card-regulated>
<issuing-bank>JPMORGAN CHASE BANK, N.A.</issuing-bank>
<expiration-month>11</expiration-month>
<expiration-year>2023</expiration-year>
<issuing-country-code>US</issuing-country-code>
</credit-card>
</credit-card-info>
</payment-source>
<charge>
<charge-id>251847</charge-id>
<subscription-id>39600222</subscription-id>
<plan-id>2205010</plan-id>
<vaulted-shopper-id>19643290</vaulted-shopper-id>
<transaction-id>38599818</transaction-id>
<transaction-date>2019-03-05</transaction-date>
<amount>1.99</amount>
<currency>USD</currency>
<soft-descriptor>BLS*try</soft-descriptor>
<payment-source>
<credit-card-info>
<billing-contact-info>
<first-name>BiFirst-name</first-name>
<last-name>BiLast-name</last-name>
<address1>BiAddress1</address1>
<address2>BiAddress2</address2>
<city>BiCity</city>
<state>CA</state>
<zip>BiZip</zip>
<country>us</country>
</billing-contact-info>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>VISA</card-type>
<bin-category>CONSUMER</bin-category>
<expiration-month>11</expiration-month>
<expiration-year>2023</expiration-year>
</credit-card>
</credit-card-info>
</payment-source>
<charge-info>
<from-date>2019-03-05</from-date>
<to-date>2019-04-05</to-date>
<charge-type>INITIAL</charge-type>
</charge-info>
<processing-info>
<processing-status>SUCCESS</processing-status>
</processing-info>
</charge>
<fraud-result-info>
<device-data-collector>N</device-data-collector>
</fraud-result-info>
</recurring-subscription>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<recurring-subscription xmlns="http://ws.plimus.com">
<subscription-id>39600224</subscription-id>
<plan-id>2205010</plan-id>
<vaulted-shopper-id>19641146</vaulted-shopper-id>
<status>ACTIVE</status>
<quantity>1</quantity>
<soft-descriptor>BLS*try</soft-descriptor>
<charge-frequency>MONTHLY</charge-frequency>
<recurring-charge-amount>1.99</recurring-charge-amount>
<currency>USD</currency>
<auto-renew>true</auto-renew>
<next-charge-date>2019-04-05</next-charge-date>
<payer-info>
<first-name>Shevie</first-name>
<last-name>Chen</last-name>
<email>sdk_test1@gmail.com</email>
<country>il</country>
<phone>1800123456789</phone>
</payer-info>
<payment-source>
<credit-card-info>
<billing-contact-info>
<first-name>BiFirst-name</first-name>
<last-name>BiLast-name</last-name>
<address1>BiAddress1</address1>
<address2>BiAddress2</address2>
<city>BiCity</city>
<state>CA</state>
<zip>BiZip</zip>
<country>us</country>
</billing-contact-info>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>VISA</card-type>
<bin-category>CONSUMER</bin-category>
<card-regulated>Y</card-regulated>
<issuing-bank>JPMORGAN CHASE BANK, N.A.</issuing-bank>
<expiration-month>11</expiration-month>
<expiration-year>2023</expiration-year>
<issuing-country-code>US</issuing-country-code>
</credit-card>
</credit-card-info>
</payment-source>
<charge>
<charge-id>251849</charge-id>
<subscription-id>39600224</subscription-id>
<plan-id>2205010</plan-id>
<vaulted-shopper-id>19641146</vaulted-shopper-id>
<transaction-id>38599820</transaction-id>
<transaction-date>2019-03-05</transaction-date>
<amount>1.99</amount>
<currency>USD</currency>
<soft-descriptor>BLS*try</soft-descriptor>
<payment-source>
<credit-card-info>
<billing-contact-info>
<first-name>BiFirst-name</first-name>
<last-name>BiLast-name</last-name>
<address1>BiAddress1</address1>
<address2>BiAddress2</address2>
<city>BiCity</city>
<state>CA</state>
<zip>BiZip</zip>
<country>us</country>
</billing-contact-info>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>VISA</card-type>
<bin-category>CONSUMER</bin-category>
<expiration-month>11</expiration-month>
<expiration-year>2023</expiration-year>
</credit-card>
</credit-card-info>
</payment-source>
<charge-info>
<from-date>2019-03-05</from-date>
<to-date>2019-04-05</to-date>
<charge-type>INITIAL</charge-type>
</charge-info>
<processing-info>
<processing-status>SUCCESS</processing-status>
</processing-info>
</charge>
<fraud-result-info>
<device-data-collector>N</device-data-collector>
</fraud-result-info>
</recurring-subscription>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<recurring-subscription xmlns="http://ws.plimus.com">
<plan-id>2190390</plan-id>
<vaulted-shopper-id>19574268</vaulted-shopper-id>
<soft-descriptor>BLS*BS</soft-descriptor>
<payer-info>
<first-name>John</first-name>
<last-name>Doe</last-name>
<email>jdoe@johndoeandsons.com</email>
<country>us</country>
<state>CA</state>
<address>138 Market St</address>
<city>San Francisco</city>
<zip>75654</zip>
<phone>14135556789</phone>
</payer-info>
<payment-source>
<credit-card-info>
<billing-contact-info>
<first-name>John</first-name>
<last-name>Doe</last-name>
<address1>138 Market St</address1>
<city>San Francisco</city>
<state>CA</state>
<zip>75654</zip>
<country>us</country>
</billing-contact-info>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>VISA</card-type>
<card-sub-type>CREDIT</card-sub-type>
<bin-category>CONSUMER</bin-category>
<issuing-bank>JPMORGAN CHASE BANK, N.A.</issuing-bank>
<expiration-month>09</expiration-month>
<expiration-year>2023</expiration-year>
<issuing-country-code>us</issuing-country-code>
</credit-card>
</credit-card-info>
</payment-source>
<charge>
<plan-id>2190390</plan-id>
<vaulted-shopper-id>19574268</vaulted-shopper-id>
<transaction-id>38510940</transaction-id>
<transaction-date>2019-07-24</transaction-date>
<amount>10.00</amount>
<currency>USD</currency>
<soft-descriptor>BLS*BS</soft-descriptor>
<payment-source>
<credit-card-info>
<billing-contact-info>
<first-name>John</first-name>
<last-name>Doe</last-name>
<address1>138 Market St</address1>
<city>San Francisco</city>
<state>CA</state>
<zip>75654</zip>
<country>us</country>
</billing-contact-info>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>VISA</card-type>
<card-sub-type>CREDIT</card-sub-type>
<bin-category>CONSUMER</bin-category>
<issuing-bank>JPMORGAN CHASE BANK, N.A.</issuing-bank>
<expiration-month>09</expiration-month>
<expiration-year>2023</expiration-year>
<issuing-country-code>us</issuing-country-code>
</credit-card>
</credit-card-info>
</payment-source>
<charge-info>
<charge-type>INITIAL</charge-type>
</charge-info>
<processing-info>
<processing-status>SUCCESS</processing-status>
</processing-info>
</charge>
<fraud-result-info>
<device-data-collector>N</device-data-collector>
</fraud-result-info>
<three-d-secure>
<authentication-result>AUTHENTICATION_SUCCEEDED</authentication-result>
</three-d-secure>
</recurring-subscription>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<recurring-subscription xmlns="http://ws.plimus.com">
<subscription-id>39600216</subscription-id>
<plan-id>2205010</plan-id>
<vaulted-shopper-id>19643286</vaulted-shopper-id>
<status>ACTIVE</status>
<quantity>1</quantity>
<soft-descriptor>BLS*try</soft-descriptor>
<charge-frequency>MONTHLY</charge-frequency>
<recurring-charge-amount>1.99</recurring-charge-amount>
<currency>USD</currency>
<auto-renew>true</auto-renew>
<next-charge-date>2019-04-05</next-charge-date>
<payer-info>
<first-name>PIFirst-name</first-name>
<last-name>PILast-name</last-name>
<email>tt@gmail.com</email>
<country>us</country>
<address>PIaddress1</address>
<address2>PIaddress2</address2>
<city>PICity</city>
<zip>PIZip</zip>
</payer-info>
<payment-source>
<credit-card-info>
<billing-contact-info>
<first-name>BiFirst-name</first-name>
<last-name>BiLast-name</last-name>
<address1>BiAddress1</address1>
<address2>BiAddress2</address2>
<city>BiCity</city>
<state>CA</state>
<zip>BiZip</zip>
<country>us</country>
</billing-contact-info>
<credit-card>
<card-last-four-digits>4444</card-last-four-digits>
<card-type>MASTERCARD</card-type>
<bin-category>CONSUMER</bin-category>
<card-regulated>N</card-regulated>
<expiration-month>07</expiration-month>
<expiration-year>2023</expiration-year>
<issuing-country-code>BR</issuing-country-code>
</credit-card>
</credit-card-info>
</payment-source>
<charge>
<charge-id>251829</charge-id>
<subscription-id>39600216</subscription-id>
<plan-id>2205010</plan-id>
<vaulted-shopper-id>19643286</vaulted-shopper-id>
<transaction-id>38599800</transaction-id>
<transaction-date>2019-03-05</transaction-date>
<amount>1.99</amount>
<currency>USD</currency>
<soft-descriptor>BLS*try</soft-descriptor>
<payment-source>
<credit-card-info>
<billing-contact-info>
<first-name>BiFirst-name</first-name>
<last-name>BiLast-name</last-name>
<address1>BiAddress1</address1>
<address2>BiAddress2</address2>
<city>BiCity</city>
<state>CA</state>
<zip>BiZip</zip>
<country>us</country>
</billing-contact-info>
<credit-card>
<card-last-four-digits>4444</card-last-four-digits>
<card-type>MASTERCARD</card-type>
<bin-category>CONSUMER</bin-category>
<expiration-month>07</expiration-month>
<expiration-year>2023</expiration-year>
</credit-card>
</credit-card-info>
</payment-source>
<charge-info>
<from-date>2019-03-05</from-date>
<to-date>2019-04-05</to-date>
<charge-type>INITIAL</charge-type>
</charge-info>
<processing-info>
<processing-status>SUCCESS</processing-status>
<authorization-code>654321</authorization-code>
<au
</processing-info>
</charge>
<fraud-result-info>
<device-data-collector>N</device-data-collector>
</fraud-result-info>
</recurring-subscription>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<recurring-subscription xmlns="http://ws.plimus.com">
<subscription-id>19752567</subscription-id>
<plan-id>2283845</plan-id>
<vaulted-shopper-id>27567999</vaulted-shopper-id>
<status>ACTIVE</status>
<quantity>1</quantity>
<soft-descriptor>BLS*default_descriptor</soft-descriptor>
<vendors-info>
<vendor-info>
<vendor-id>10398032</vendor-id>
<commission-percent>90.2</commission-percent>
</vendor-info>
</vendors-info>
<charge-frequency>MONTHLY</charge-frequency>
<trial-period-days>14</trial-period-days>
<recurring-charge-amount>29.99</recurring-charge-amount>
<currency>USD</currency>
<initial-charge-amount>100.00</initial-charge-amount>
<auto-renew>true</auto-renew>
<next-charge-date>2020-06-09</next-charge-date>
<payer-info>
<first-name>John</first-name>
<last-name>Doe</last-name>
<zip>12345</zip>
<phone>1234567890</phone>
</payer-info>
<payment-source>
<credit-card-info>
<billing-contact-info>
<first-name>John</first-name>
<last-name>Doe</last-name>
<zip>12345</zip>
</billing-contact-info>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>VISA</card-type>
<card-sub-type>CREDIT</card-sub-type>
<bin-category>CONSUMER</bin-category>
<card-regulated>Y</card-regulated>
<issuing-bank>JPMORGAN CHASE BANK, N.A.</issuing-bank>
<expiration-month>07</expiration-month>
<expiration-year>2023</expiration-year>
<issuing-country-code>us</issuing-country-code>
</credit-card>
</credit-card-info>
</payment-source>
<charge>
<charge-id>18319027</charge-id>
<subscription-id>19752567</subscription-id>
<plan-id>2283845</plan-id>
<vaulted-shopper-id>27567999</vaulted-shopper-id>
<transaction-id>1031082567</transaction-id>
<transaction-date>2020-05-26</transaction-date>
<amount>100.00</amount>
<currency>USD</currency>
<soft-descriptor>BLS*default_descriptor</soft-descriptor>
<payment-source>
<credit-card-info>
<billing-contact-info>
<first-name>John</first-name>
<last-name>Doe</last-name>
<zip>12345</zip>
</billing-contact-info>
<credit-card>
<card-last-four-digits>1111</card-last-four-digits>
<card-type>VISA</card-type>
<card-sub-type>CREDIT</card-sub-type>
<bin-category>CONSUMER</bin-category>
<card-regulated>Y</card-regulated>
<issuing-bank>JPMORGAN CHASE BANK, N.A.</issuing-bank>
<expiration-month>07</expiration-month>
<expiration-year>2023</expiration-year>
<issuing-country-code>us</issuing-country-code>
</credit-card>
</credit-card-info>
</payment-source>
<charge-info>
<from-date>2020-05-26</from-date>
<to-date>2020-06-09</to-date>
<charge-type>INITIAL</charge-type>
</charge-info>
<processing-info>
<processing-status>SUCCESS</processing-status>
<authorization-code>654321</authorization-code>
</processing-info>
<vendors-info>
<vendor-info>
<vendor-id>10398032</vendor-id>
<commission-percent>90.2</commission-percent>
</vendor-info>
</vendors-info>
</charge>
<fraud-result-info/>
</recurring-subscription>
Example Descriptions
Create Subscription: with new shopper
This example shows a basic Create Subscription request for a new shopper, with details about the shopper and their payment method.
Create Subscription: with vaulted shopper and optional fields
This example shows a Create Subscription request with an existing vaulted shopper who has only one saved payment method, so there is no need to specify which payment method to use.
This example request also includes all optional subscription fields, such as quantity, soft descriptor and the various override fields. The override values take precedence over the settings at the plan level, and they apply only to this subscription.
Create Subscription: with vaulted shopper and specific payment method
This example shows a Create Subscription request with an existing vaulted shopper who has multiple saved payment methods, so you must specify which payment method to use.
Create Subscription: with new shopper and Hosted Payment Fields
This example shows a Create Subscription request with a new shopper whose card information was collected using Hosted Payment Fields. Include pf-token
in the request with its value set to the Hosted Payment Fields token.
Create Subscription: with new shopper and vendors info
This example shows a Create Subscription request with a Marketplace vendor. Include vendors-info
in the request to process a transaction involving one or more vendors. For more details, refer to the Marketplace Guide.
Create Subscription: with Apple Pay
This example shows a Create Subscription request with an Apple Pay wallet. In the request, include the encoded-payment-token
inside payment-source
> wallet
, also supply wallet-type
of APPLE_PAY
there. Refer to the Apple Pay Guide for more information.
Note: To test Apple Pay, follow the steps in the Apple Pay Guide. The API Explorer does not support Apple Pay testing.
Create Subscription: with SEPA Direct Debit
This example shows a Create Subscription request with a new shopper with the SEPA Direct Debit payment method. In the request, include authorized-by-shopper
with a value set to true to indicate that you've collected the shopper's mandate acceptance. Include the shopper's bank account details within payment-source
> sepa-direct-debit-info
> sepa-direct-debit
.
Note: subscription-id
will not be returned in the response. The subscription ID will be created when the shopper's account is debited (typically within 5 - 6 business days). You will then be informed of the subscription ID via Charge
webhook or via Retrieve Specific Charge request.
Create Subscription: with ACH/ECP
This example shows a Create Subscription request with a new shopper with the ACH/ECP payment method. In the request, include authorized-by-shopper
with a value set to true to indicate that you've collected the shopper's permission to debit their account. Include the shopper's bank account details within payment-source
> ecp-info
> ecp
. If you would like to process the transaction for a returning shopper, pass an empty ecp-info
container.
Note: subscription-id
will not be returned in the response. The subscription ID will be created when the shopper's account is debited (typically within 2 business days). You will then be informed of the subscription ID via Charge
webhook or via Retrieve Specific Charge request.
Create Subscription: with Google Pay™
This example shows a Create Subscription request with a Google Pay wallet. In the request, include wallet-type
= GOOGLE_PAY and encoded-payment-token
inside payment-source
> wallet
. See the Google Pay Guide for more information.
New shopper with different billing
This example shows a Create Subscription request with a new shopper whose the shopper contact details are different from the credit card billing information.
Vaulted shopper with billing
This example shows a Create Subscription request for an existing shopper with existing credit card information.
New shopper with hosted fields and different billing
This example shows a Create Subscription request for Hosted Payment Fields for a new shopper whose the shopper contact details are different from the credit card billing information.
Vaulted shopper with hosted fields and different billing
This example shows a Create Subscription request for Hosted Payment Fields for a an existing shopper with existing credit card information.
Back to Top
API Explorer
To test out a call, enter the XML portion of the request below and then click Try it!
Tip: Copy the XML portion from one of the example requests above, or use the XML code below as a starting point. You can enter different parameter values to see how your test scenario would work. The request headers, including authorization, are already built in for you in this test area, so you should not include them here.
<recurring-subscription xmlns="http://ws.plimus.com">
<plan-id>2283845</plan-id>
<payer-info>
<first-name>John</first-name>
<last-name>Doe</last-name>
<zip>12345</zip>
<phone>1234567890</phone>
</payer-info>
<payment-source>
<credit-card-info>
<credit-card>
<card-number>4111111111111111</card-number>
<security-code>111</security-code>
<expiration-month>07</expiration-month>
<expiration-year>2023</expiration-year>
</credit-card>
</credit-card-info>
</payment-source>
</recurring-subscription>