Vipps Recurring And MobilePay Recurring

Vipps and MobilePay Recurring is a product provided by VippsMobilePay that allows organization operating in Norway, Denmark and Finland to offer mobile/app based recurring payment, for subscribers with a valid account. It is backed by a credit card, debit card or bank account managed by VippsMobilePay.

In the following the product name Vipps Recurring is used, but it refers to both Vipps and MobilePay.

Requirements for Vipps Recurring

The requirements is that an account is setup for Vipps (Account endpoint). Infosoft is a Vipps partner and we can facilitate the Vipps onboarding process if required, please contact support for details.

Agreement Registration

In Vipps terminology an agreement is almost like a subscription. It is an agreement between the Merchant (a INFO-Subscription tenant) and the subscriber to pay for a given product, at a recurring interval. If the subscription plan changes, the agreement should change with it.

Vipps requires an integrated interactive process for registering new agreements. Typically in conjunction with an order.

  1. The potential subscriber selects a Subscription Plan to purchase.

  2. A draft agreement is generated on Vipps using the subscribers mobile number.

  3. The subscriber is redirected to a website to confirm the information (Managed by Vipps).

  4. The subscriber confirms the purchase in the Vipps Mobile App (Managed by Vipps).

  5. The order and agreement is finalized and the initial payment associated with the order.

  6. Recurring payments can be charged on the subscribers account/card, associated with the specific Vipps Agreement.

Since all of this is an interactive process, some integration is required for it to be available in the order process. INFO-Subscription provides a turn key sales and ordering process that is capable of handling Vipps Agreements.

If the caller utilizes the ordering API provided by INFO-Subscription some of the above is handled, but the initial parameters and the redirection needs to be managed by the client.

In-Shop/Non-Browser Agreement Registration (Merchant Initiated)

Vipps allows a special type of agreement registration where everything is managed by the merchant, and the only thing the subscriber has to do is accept the agreement in the mobile app. This process is almost identical to the above, except the browser redirect part can be headless and without user interaction.

The purpose of this registration process is to provide “in-shop” purchases of subscriptions without requiring the buyer to interact with a browser.

This alternate registration process requires:

  1. A special agreement with Vipps that allows merchant initiated agreements.

  2. An extra parameter to the order process that indicates the process should be used with Vipps.

Payment Type Management

Since Vipps Recurring is backed by bank accounts and potentially card agreements, there is a need to manage the card agreements upon expiration. All of this is managed by Vipps, refer to the official Vipps documentation for what this entails.

Manually Registering Agreements

It is possible to register/import agreements registered outside of INFO-Subscription.

An agreement registration requires the following

  • A Vipps Agreement Id

  • A SubscriberId

  • An AccountId

The agreement is created by sending a POST request to the agreement endpoint, an example request body might look like:

{
    "accountId" : "a28373e1-5733-4682-98f0-549cb59800f8",
    "subscriberId" : "acecdb1d-b78b-45bd-9374-4feee7edaf72",
    "vippsAgreementId" : "agr_123456",
}

The output of such a request is a new Id for the agreement, which can then be used to register a general payment agreement as described in the section for managing agreements

Creating Charges

A charge is the Vipps Recurring terminology for doing a debit/charge transaction on the subscribers account. Once submitted, if not cancelled by the merchant, will lead to an account transfer on the given due date.

Charges are automatically created and cancelled for subscriptions on a Vipps Recurring agreement. There should be minimal need for manually creating charges. Please let us know if you have specific scenarios that is not supported.

Charges can be created directly using the API if required, using the charges endpoint.

Caution

Depending on the registration process, new agreements may be created with a maximum debit amount per month. Using the subscription agreement for external charges runs the risk of exceeding this amount. This in turn leads to rejected charges and unpaid invoices for the regular subscription.

Use this feature with some caution if the agreement is used by a subscription.

Single Payments

VippsMobilePay also offers a product that does not require an agreement, transactions/payments using this API are denoted epayment. Typically used for single purchases in retail scenarios or similar.

INFO-Subscription offers an integration with epayment, that can be used for instance to pay for a single invoice, prepaying to a billing account, or any other thing you may want to use it for..

The flow for creating a new epayment resembles agreement registration, with one notable exception being the final capture.

  1. The subscriber selects something to pay for.

  2. An epayment authorization process is started with Vipps.

  3. The subscriber is redirected to a website (or App) to confirm the information (Managed by Vipps).

  4. The subscriber confirms the purchase in the Vipps Mobile App (Managed by Vipps).

  5. A capture request is sent to Vipps once the product is shipped/delivered.

Scheduled Captures

Since Vipps Epayments acts as a two phased transaction, the client must issue a capture request when shipping goods (or delivery products or whatever).

When using an epayment to pay invoices a due date is known at the purchase time and a scheduled capture time can be set using the epayment endpoint.

If set, a capture attempt will be automatically executed around the time specified (within an hour typically).

Automatic Accounting/Settlement

It is possible to have INFO-Subscription handle settlement and accounting for an epayment.

All that is required is to fill out the required Accounting properties when creating the epayment.

An example request with accounting data that automagically settles an Invoice may look like:

{
    "accountId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "reference": "a28373e1-5733-4682-98f0-549cb59800f8",
    "amount": 1000, // The amount is taken from the Invoice or the Reminder payable amount.
    "currency": "NOK",
    "description": "Paying Invoice 1234",
    "returnUrl": "https://merchantstore.example.com/order/",
    "userFlow": "WEB_REDIRECT",
    "captureTime": "2024-08-12T08:20:01.261Z", // When automatic capture should kick in (can be omitted)
    "accounting": {
        "subscriberId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "externalInvoiceIdentifier": "10012347207834", // Indicates that we want to settle this invoice with this epayment.
    }
}

}