Subscriptions: set up recurring billing

From Barion Documentation
Revision as of 07:36, 12 August 2024 by [email protected] (talk | contribs) (create page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Find out how to use the Barion Gateway API to set up a subscription (recurring payment in Barion terminology). In a recurring payment, a Barion shop is authorized by the customer to charge the customer’s specific payment instrument the same amount at predefined intervals, until a predefined future date.

The transactions in recurring payments aren’t automated – the feature lets merchants set up recurrence, but they’ll have to explicitly charge the customer themselves in the scenario.

Once the funding source has been tokenized in the initial transaction, this is a customer-not-present scenario, so 3DS doesn’t apply.

Prerequisites

  • a Barion Wallet with a balance in the currency of the payment
  • an active Barion shop
  • an approved request to Barion to allow recurring payment scenarios in the Barion shop

Enable token payment scenarios for your Barion shop

Recurring payments are enabled by default in the Barion Sandbox environment.

Make sure that your webshop meets the following criteria for recurring payment scenarios:

  • your customers are prompted to explicitly consent before you trigger the payment scenario
  • your customers are informed about how they can change their mind about the scenario

    Read the full list of Barion's criteria for enabling recurring payments for a Barion shop here.

  • Ask Barion customer support to enable recurring payments for your Barion shop, using the Customer service tab in your Barion Wallet, or the "Other>Help" screen in the Barion app.

    Create a token to represent the customer’s payment instrument

    Note that you need to request and receive consent from the customer in a way that meets Barion’s relevant requirements, before you can register their payment instrument with Barion.

    When you’d like to set up a recurring payment using a customer’s specific payment instrument, do the following.

    1. Make a call to the Payment start API endpoint with the following four extra properties:

      The PurchaseInformation property, unique to recurring payments, is a structured property with nested properties of its own.

      • InitiateRecurrence: true

      • RecurrenceId: <the unique token that you generate and save for the customer’s payment instrument>

        Multiple shops can share the same token – get in touch with Merchant Helpdesk for details.

      • RecurrenceType: RecurringPayment

      • PurchaseInformation

        • RecurringExpiry: The locale-specific date past which no subsequent charges are accepted for the payment instrument using the specified RecurrenceId.

        • RecurringFrequency: The minimum number of days between two payments with the specified RecurrenceId.

      The RecurrenceResult property, which indicates the status of the token registration is None at this stage, because the registration of a payment instrument effectively happens when the customer selects the given payment instrument on the Barion Smart Gateway UI.

      Overview of how the token (RecurrenceId) is registered, and then used
      Overview of how the token (RecurrenceId) is registered, and then used

      If the endpoint responds with the RecurringPaymentNotAllowed error code, get in touch with Barion customer support to enable token payments for your shop.

    2. Process the payment callback as usual.

      {
        "PaymentId": "ee849878c554ef118c0c001dd8b71cc5",
        "PaymentRequestId": "DEV-TEST-615",
        "Status": "Prepared",
        "QRUrl": "https://api.test.barion.com/qr/generate?paymentId=ee849878-c554-ef11-8c0c-001dd8b71cc5&size=Large",
        "Transactions": [
          {
            "POSTransactionId": "DEV-TEST-01-01",
            "TransactionId": "ef849878c554ef118c0c001dd8b71cc5",
            "Status": "Prepared",
            "Currency": "EUR",
            "TransactionTime": "0001-01-01T00:00:00",
            "RelatedId": null
          }
        ],
        "RecurrenceResult": "None",
        "ThreeDSAuthClientData": null,
        "GatewayUrl": "https://secure.test.barion.com/Pay?Id=ee849878c554ef118c0c001dd8b71cc5",
        "RedirectUrl": "https://example.com/?paymentId=ee849878c554ef118c0c001dd8b71cc5",
        "CallbackUrl": "",
        "TraceId": null,
        "Errors": []
      }
    3. Query the payment state endpoint, and store the TraceId in its response.

      If the tokenized payment instrument is a Barion Wallet balance, a TraceId is unnecessary, and won’t be returned in the payment state endpoint response.

      This value is crucial to recurring payments, as it represents the payment instrument for the given recurring payment scenario in subsequent transactions.

      You’ll need to provide it for every subsequent payment in the recurring payment that you’ve just set up.

      Best practice is to also store the FundingSource and FundingInformation values in the payment state response – these indicate the type of payment method and the description of the payment instrument that the customer has selected for the payment, and so the payment instrument that the RecurrenceId token will represent in future payments.

    Use the registered token for recurring payments

    Prerequisites

    Unless the tokenized payment instrument is a Barion Wallet balance, you’ll need a TraceId from a successful recurrence-initializing payment for all subsequent payments in a recurring payment scenario.

    There are three conditions that need to be met for a recurring payment transaction to be successful:

    • the amount in the subsequent payment can’t exceed the original payment where the token was set up
    • at least a number of days specified in the RecurringFrequency property must elapse between two payments in a recurring scenario
    • the date of a payment in a recurring payment scenario can’t be later than the specified RecurringExpiry property

    Note that you can switch to a different payment scenario if the above conditions are no longer met, by requesting a new TraceId for the customer’s payment instrument.

    Steps

    1. Call the Payment start Barion API endpoint, and pass it:

      • the TraceId (if the call to the payment state endpoint after the initial payment returned one)
      • the registered RecurrenceId,
      • RecurrenceType: RecurringPayment, and
      • InitiateRecurrence: false.

      Don’t pass a PurchaseInformation property – you’ve already fixed the values of its sub-properties during the initial token-registering payment.

          {
          "POSKey": "[[SECRET_POS_KEY]]",
          "PaymentType": "Immediate",
          "PaymentRequestId": "EXMPLSHOP-PM-002",
          "InitiateRecurrence": false,
          "RecurrenceId": "SHOP-XMLP-TOKEN-ABC-123",
          "RecurrenceType": "RecurringPayment",
          "TraceId": "FGTRR55322843442124780",
          "FundingSources": ["All"],
          "GuestCheckOut" : true,
          "Currency": "EUR",
          "Transactions": [
              {
                  "POSTransactionId": "EXMPLSHOP-PM-002/TR001",
                  "Payee": "[[MERCHANTS_BARION_EMAIL]]",
                  "Total": 25.2,
                  "Comment": "Subscription fee for the second month",
                  "Items": [
                      {
                          "Name": "Website subscription",
                          "Description": "Website subscription for one month",
                          "Quantity": 1,
                          "Unit": "month",
                          "UnitPrice": 25.2,
                          "ItemTotal": 25.2,
                          "SKU": "EXMPLSHOP/SKU/PHC-02"
                      }
                  ]
              }
          ]
          }
    2. Check the RecurrenceResult property in the payment start endpoint response, which indicates whether the token registration had been successful:

      A generic Payment/Start API endpoint response:

      {
        "PaymentId": "ee849878c554ef118c0c001dd8b71cc5",
        "PaymentRequestId": "DEV-TEST-615",
        "Status": "Prepared",
        "QRUrl": "https://api.test.barion.com/qr/generate?paymentId=ee849878-c554-ef11-8c0c-001dd8b71cc5&size=Large",
        "Transactions": [
          {
            "POSTransactionId": "DEV-TEST-01-01",
            "TransactionId": "ef849878c554ef118c0c001dd8b71cc5",
            "Status": "Prepared",
            "Currency": "EUR",
            "TransactionTime": "0001-01-01T00:00:00",
            "RelatedId": null
          }
        ],
        "RecurrenceResult": "None",
        "ThreeDSAuthClientData": null,
        "GatewayUrl": "https://secure.test.barion.com/Pay?Id=ee849878c554ef118c0c001dd8b71cc5",
        "RedirectUrl": "https://example.com/?paymentId=ee849878c554ef118c0c001dd8b71cc5",
        "CallbackUrl": "",
        "TraceId": null,
        "Errors": []
      }
      RecurrenceResult value Description
      Successful The token had been registered successfully to the payment instrument that the customer used to complete the initial payment.
      The token had been registered successfully to the payment instrument that the customer used to complete the initial payment.
      The subsequent payment is paid for using the token that now represents the customer’s payment instrument.
      Failed The token won’t work. Check the call details, and try again.
      None No token payment was requested (InitiateRecurrence was omitted, or set to true).
      Repeat steps 1–2, making sure to pass InitiateRecurrence: true.
      ThreeDSAuthenticationRequired This return value doesn’t apply when the registered payment instrument is a Barion Wallet.
      The holder of the card whose token you registered is challenged to perform 3DSecure authentication.
      In a recurring payment scenario this can only happen if the TraceId is missing or incorrect, that is, it refers to a payment instrument different from the initial token-registering payment.
      To fix this, call the payment state endpoint, and repeat steps 1–2, making sure to use the TraceId parameter that the payment state endpoint returned.
      NotFound The RecurrenceId sent with the query wasn’t recognized.

Troubleshoot subsequent payments

Here’s the list of possible error codes that subsequent recurring payments can trigger, and how best to deal with them.

Error code Description
InvalidRecurrenceId The registered token was found to be invalid. This is usually because the token’s registration had failed. Try again from the top.
RecurringPaymentDenied The user associated with the token had been deleted, suspended, or blocked since the token was registered.
InsufficientFunds The Barion Wallet that the token represents doesn’t have enough funds to fulfill the charge.
OriginalPaymentWasntSuccessful The payment where the bank card that the token represents was registered didn’t itself succeed, which had invalidated the token.
InvalidCurrency The Barion Wallet that the token represents doesn’t have a balance in the currency that the current payment requires.
CardExpired The bank card that whose token was registered had since expired.
Re-initialize the original RecurrenceId to fix this.
TopUpFailed This is an error code that isn’t relevant to the scenario, but which might still pop up.
It’s usually accompanied by another more specific error code.
ThreeDSNotEnabled The issuer rejected the tokenized bank card because of a lack of Strong Customer Authentication.
InvalidUser The source Barion Wallet doesn’t exist or isn’t fully activated.
UserCantMakeOutgoingTransaction The source Barion Wallet is suspended or doesn’t exist.
CardError An error occurred in either the 3DS authentication system or the bank system when processing the tokenized bank card.
There can be several causes for this, from security settings to active limits on the card.
You’ll need to reach out to the customer to troubleshoot the issue.
PingFailed The bank or other third party didn’t respond to the request, so the Barion Payment API cancelled it.
Try again later.

Troubleshoot an invalidated payment instrument

If the payment instrument you’ve registered has become invalid since the initial payment (expires, gets reported as lost, etc.), you’ll need to re-register the payment instrument’s RecurrenceId to go on using it in the scenario.

  1. Make a call to the the Payment start API endpoint with the following properties:

    • InitiateRecurrence: true

    • RecurrenceId: <the original token>

    • RecurrenceType: <the value first used>

    Make sure not to include a TraceId property.

  2. Wait for the callback and verify that the customer paid the order.

  3. Query the payment state endpoint, and store the newly-generated TraceId that the endpoint returns.

  4. Use the new TraceId for subsequent payments as before.