Skip to main content

One-off Payments

There are 2 flows a customer can pay for a product or a service with One-Off payments. You are able to:

  • Flow 1: Create a new Agreement with an initial One-Off Payment.
  • Flow 2: Merchants can send a One-Off payment, which MobilePay will attempt to automatically reserve, without the user’s confirmation

Note: One-off payments are charged when the customer manually swipes accept or auto_reserve field was set to true when a one-off payment was requested.

One-off Payment will expire in 1 day (by default) if it is not accepted or rejected by the user during that time or automatic reservation failed and user didn't take any action afterward. The Merchant (or the integrator) will receive a callback when the One-Off Payment is expired. Custom expiration times ranging from 1 minute to 18 weeks can be specified by providing expiration_timeout_minutes field. Note: as an integrator, it is your responsibility to align with the Merchant on needs for the fields, since the default expiration of 1 day does not suit all Merchant use cases.

Payment reservation appears on the user's Activities List in the 'Pending' section in the MobilePay app. When the purchase is completed, the transaction is moved to the 'Approved' section in the MobilePay app.

One-off payment does not affect the frequency and grace period. So if you create an agreement with a one-off payment, you can request the first subscription payment whenever you want. You can also request a one-off payment on an existing agreement in between two subscription payments, and it will not be affected by the frequency.

Flow 1- One-off Payment With a New Agreement​

  • Use this when the customer does not have an agreement already, and you need the customer to create an agreement and simultaneously pay for the service/product. This allows for products to be bundled with agreements as one transaction (for example a phone).
  • When you create an agreement with a One-Off payment, and the user accepts the agreement, the payment will be created and reserved.
  • Capture and Reserve is handled by the Merchant. Capture is done even if the user is blocked after reservation. When the one-off payment is processed, the payment will show up in the user's activity list in the MobilePay app.

Add a one_off_payment property to the POST /api/providers/{providerId}/agreements request payload if you want the agreement activated only when the user is successfully charged an initial subscription amount.

{
"external_id": "AGGR00068",
"amount": "10",
"currency": "DKK",
"description": "Monthly subscription",
"frequency": 12,
"links": [
{
"rel": "user-redirect",
"href": "https://example.com/1b08e244-4aea-4988-99d6-1bd22c6a5b2c"
},
{
"rel": "success-callback",
"href": "https://example.com/1b08e244-4aea-4988-99d6-1bd22c6a5b2c"
},
{
"rel": "cancel-callback",
"href": "https://example.com/1b08e244-4aea-4988-99d6-1bd22c6a5b2c"
}
],
"country_code": "DK",
"plan": "Basic",
"expiration_timeout_minutes": 5,
"mobile_phone_number": "4511100118",
"one_off_payment":
{
"amount": "80",
"external_id": "OOP00348",
"description": "Down payment for our services",
"expiration_timeout_minutes": "1440"
}
}

Request parameters

ParameterTypeRequiredDescriptionValid values
one_off_paymentobjectOne-Off Payment details.
one_off_payment.amountnumber(0.00)requiredOne-Off Payment amount, which will be displayed for the user in the MobilePay app.> 0.00, decimals separated with a dot.
one_off_payment.descriptionstring(60)requiredAdditional information provided by the merchant to the user, that will be displayed on the One-off Payment screen. Description is a short description of what the client is paying for.
one_off_payment.external_idstring(64)requiredOne-Off Payment identifier on the merchant's side. This will be included in the request body of the payment callback. The external_id is visible on the One-off Payment screen.
one_off_payment.expiration_timeout_minutesintoptionalOne-Off Payment expiration timeout in minutes.Min: 1, max: 181440 (18 weeks), default: 1440 (24 hours)
note

The recommendation for "external_id" is to use up to 30 symbols. For instant transfers "external_id" is used as the payment reference and will be truncated down to 30 symbols if it contains more. Truncated payment reference will be visible in the bank statement.

In this case, the response of POST /api/providers/{providerId}/agreements will contain an additional one_off_payment_id value - id of the newly requested One-Off Payment.

{
"id": "1b08e244-4aea-4988-99d6-1bd22c6a5b2c",
"one_off_payment_id": "2a5dd31f-32c1-4517-925f-9c60ba19f8ca",
"links": [
{
"rel": "mobile-pay",
"href": "https://<mobile-pay-landing-page>/?flow=agreement&id=1b08e244-4aea-4988-99d6-1bd22c6a5b2c&redirectUrl=https%3a%2f%2fwww.example.com%2fredirect&countryCode=DK&mobile=4511100118"
}
]
}

Flow 2 - One-off with Auto reserve​

  • The one-off payment without swipe is sent directly to the MobilePay app. There is no MobilePay landing page. If the payment is successful, then a push message is shown that the One-off without swipe/confirmation was successful.
  • One-Off without swipe is valid for One-Offs without a new agreement.

When using one-off without a swipe, the sliding part is omitted. There might still be issues with the card, nemID, and the user will get a push message about the failed payment. But until then, it is a reserved payment. Therefore, there is a possibility of a time gap.

  • Merchants can send one-off payment, which MobilePay will attempt to automatically reserve, without the user’s confirmation.
  • Value: The customer does not need to swipe and the payment experience is seamless

Merchants who want to use the auto_reserve field feature must apply for this in regard to the onboarding of Subscriptions. Merchants cannot use this feature without being pre-approved to do so.

Request parameters

ParameterTypeRequiredDescriptionValid values
amountnumber(0.00)requiredOne-off Payment amount, which will be displayed for the user in the MobilePay app.> 0.00, decimals separated with a dot.
descriptionstring(60)requiredAdditional information provided by the merchant to the user, that will be displayed on the One-off Payment screen.
external_idstring(64)requiredOne-off Payment identifier on the merchant's side. This will be included in the request body of the payment callback. The external_id is visible on the One-off Payment screen.
linksstringrequiredLink relation of the One-off Payment creation sequence. Must contain 1 value for user redirect.
links[].relstringrequiredLink relation type.user-redirect
links[].hrefstringrequiredLink relation hyperlink reference.merchant url
auto_reservebooleanoptionalWhen this field is set to true, we will attempt to automatically reserve the payment without the user's interaction. If you do not wish payment to be automatically reserved, you can omit this field or set it to false.true/false
expiration_timeout_minutesintoptionalOne-Off Payment expiration timeout in minutes.Min: 1, max: 181440 (18 weeks), default: 1440 (24 hours)
{
"amount": "80",
"external_id": "OOP00348",
"description": "Pay now for additional goods",
"links": [
{
"rel": "user-redirect",
"href": "https://example.com/1b08e244-4aea-4988-99d6-1bd22c6a5b2c"
}
],
"auto_reserve": true,
"expiration_timeout_minutes": "1440"
}
note

The recommendation for "external_id" is to use up to 30 symbols. For instant transfers "external_id" is used as the payment reference and will be truncated down to 30 symbols if it contains more. Truncated payment reference will be visible in the bank statement.

One-off payment screens​

OneOff flows

When auto_reserve field is set to true:

OneOff without swipe

  • Failed auto_reserve OneOff: If the payment fails, and if push messages are also turned off, then a one-off confirmation screen after logging in (until the session expires) is displayed for the User. The user can retry the payment from the Confirmation screen.

  • Successful auto_reserve OneOff: If the payment is successful, then the user is presented with a reservation receipt.

Dual Device​

Initiating a purchase of a product/service from a desktop (the other device) should end-up as

  • one-off Payment Landing Page on Desktop and
  • a push directly to MobilePay (push notification)

Callbacks​

Once the one-off payment status changes from Requested to Reserved, Rejected or Expired, a callback will be done to the callback address, which is configurable via PATCH /api/providers/{providerId} with path value /payment_status_callback_url. The same way as with callbacks for regular payment requests.

New StatusConditionWhen to expectCallback statusCallback status_textCallback status_code
ReservedThe one-off payment was accepted by the user or was automatically reserved with auto_reserve flag and money is reserved for you on his card. You can now capture the money.Right after payment was successfully reserved.ReservedPayment successfully reserved.0
RejectedUser rejected one-off payment request in MobilePay.Right after user rejects one-off payment.RejectedRejected by user.50001
Expired1. One-off payment was neither accepted, nor rejected by user. 2. User didn't any action after the automatic reservation failed.1 day after you requested one-off paymentExpiredExpired by the system.50008
RequestedThe automatic reservation of a one-off payment failed. User action is needed.Right after the automatic reservation has failedRequestedAutomatic reservation failed. User action is needed.50013

One-off payment sent with an agreement:​

StatusStatus codeStatus textCallback sending condition
Cancelled70003Payment cancelled.Pending agreement with one-off payment has expired
Pending agreement with one-off payment was rejected by user
Merchant cancels pending agreement with one-off payment
Merchant cancels active agreement and one-off payment is Reserved
Merchant cancells Reserved one-off payment
Reserved0Payment successfully reserved.Agreement with one-off payment was accepted and payment was reserved

Autoreserve one-off payment:​

StatusStatus codeStatus textCallback sending condition
Cancelled70003Payment cancelled.Merchant cancells autoreserve one-off payment in Requested or Reserved status
Merchant cancels active agreement and one-off payment is Reserved or Requested
Payment expires
Reserved0Payment successfully reserved.Payment reserved
Requested50013Automatic reservation failed. User action is needed.Reservation failed

Reservation failure and expiration callbacks are sent only after payment expiration with few seconds delay between each other.

User notifications​

DescriptionWhenTextButtonsDepends on these Notification settingsType
Dual Device only: One-off payment on existing agreementWhen a customer is purchasing on the existing agreement.Godkend betaling på Amount Currency til MerchantText: Vis Navigation: Payment OverviewOS, AppOneOff
One-off without swipeWhen One-off without swipe/confirmation was successfulBetalt Amount Currency til Merchant NameText: Vis Navigation: Reservation receipt or Success receiptOS, AppOne-off
One-off without swipe/confirmation was NOT successfulWhen One-off without swipe/confirmation was NOT successfulVi kunne ikke gennemføre din betaling til MerchantText: Vis Navigation: One-off confirmation screenOS, AppOne-off

If the user has turned off Push Notifications, then the only way the user can see the payment is by opening the activity list or agreement payments.

One-off payment state diagram​

OneOff state diagram

Capture Reserved One-Off Payment​

When you receive a callback about a successfully reserved payment, now it's time to capture your money. You can do that by making a call to POST /api/providers/{providerId}/agreements/{agreementId}/oneoffpayments/{paymentId}/capture endpoint. If the HTTP response is 204 - No Content, it means that the money was transferred to your account.

You can capture a payment only once for an order, and the payment can't be more than the order's authorized amount. This means that your customers can't add to an existing order. If they want to add more products after an order has been placed, then they need to make a new order.

Cancel One-Off Payment Request/Reservation​

In case you weren't able to deliver goods or any other problem occurs, you can always cancel a one-off payment until it's not captured or expired. You can do that by making a call to DELETE /api/providers/{providerId}/agreements/{agreementId}/oneoffpayments/{paymentId} endpoint. If the HTTP response is '204 - No Content', it means that a one-off payment request/reservation was canceled.

The end-user cannot cancel the agreement with a pending payment reservation, only the merchant can do so.

By canceling the agreement with a pending payment reservation, then the merchant also automatically cancels the reservation

Expired One-off​

It is mandatory for the merchant to Capture or Cancel a one-off payment if it was reserved on a customer account.

We encourage you to capture as soon as a service is rendered or an order is shipped. It results in a bad end-user experience if the amount is reserved on the customer’s account for too long, as the customer can see the amount on their bank statement.

Uncaptured one-off payments expire after 6 days 23 hours 45 minutes.