Skip to main content

Recurring Processing Model

info

This field allows merchants to specify the type of recurring transaction being processed. We support different recurring payment scenarios and provide flexibility for various payment use cases.

Some things to keep in mind:

  • If the recurringProcessingModel field is sent, the merchantShopperReference field cannot be used in the same request.
  • If recurringProcessingModel is included, the amount field can be set to 0 for card tokenization. (In this case you don't have to follow the minimum amount guidelines)

Accepted Values

ValueDescription
CardOnFileCard details are stored for one-click purchases, omnichannel journeys, or subscriptions with non-fixed schedules.
SubscriptionTransactions for fixed or variable amounts following a fixed schedule.
UnscheduledCardOnFileUnscheduled transactions using stored card details, such as automatic top-ups based on predefined conditions.

Request Example - Card Tokenization for Future Use

{
"amount": "0",
"currency": "ISK",
"returnUrl": "https://your-ecommerce-website.com/straumur_redirect",
"reference": "9990QQAZ1221",
"recurringProcessingModel": "CardOnFile"
}

Request Example - Card Tokenization with Subscription

{
"amount": "10000",
"currency": "ISK",
"returnUrl": "https://your-ecommerce-website.com/straumur_redirect",
"reference": "9990QQAZ1221",
"recurringProcessingModel": "Subscription"
}

Request Field

FieldTypeRequiredDescriptionExampleMin LengthMax Length
recurringProcessingModelStringOptionalSpecifies the type of recurring transaction.CardOnFile--