Partial Captures

Saferpay does offer the option to do Partial Captures (Hereafter refered to as Multipart Captures) on transactions, made with certain payment methods. Multipart Captures split the money authorized during one transaction into multiple batches, enabling the merchant to only capture the amount he wants to obtain, e.g. for delivering a part of a certain order.

Requirements

  1. Multipart Captures are only available for

  2. No MultipartCapture request should be sent before receiving the response of a preceding request (i.e. no parallel calls are allowed). The timeout for this are 100 seconds.

  3. The sum of multipart captures must not exceed the authorized amount.

  4. A unique OrderPartId must be used for each request.

  5. Multipart Captures execute the money-flow (closing) with the execution of the capture itself! A Cancel of a Multipart Capture therefore is not possible!

  6. MultipartCapture is only available for SpecVersions 1.10 and higher!

Note, that you cannot mix the Multipart Capture and the Normal Capture within one transaction. Either do one, or the other!

Executing a Multipart Capture

Before you can even execute a Multipart Capture, you, of course, need a transaction, that needs to be captured. This can be any normal authorization, either done by the Payment Page, or Transaction Interface. You don't have to consider anything special, up to this point!

Additionally to the standard parameters needed to execute a Capture, the following parameters are important for a Multipart Capture:

  • Type: The Type specifies, whether this is one of many subsequent, or the final Capture.

  • OrderPartId: Each Multipart Capture is identified by a unique OrderPartId, which will also be forwarded to the respective reconciliation-files you will recieve later. That makes this Id very important for later identification, thus you have to make sure, that said Id is set as unique, so confusions can be averted.

{
    "RequestHeader": {
      "SpecVersion": "1.10",
      "CustomerId": "[your customer id]",
      "RequestId": "[unique request identifier]",
      "RetryIndicator": 0
    },
    "TransactionReference": {
        "TransactionId": "723n4MAjMdhjSAhAKEUdA8jtl9jb"
    },
    "Amount": {
        "Value": 1000,
        "CurrencyCode": "CHF"
    },
    "Type": "PARTIAL",
    "OrderPartId": "123456789"
}

Each capture is identified by a CaptureId (Marked with the suffix "_c") , which should be saved, since this Id is used for further actions, like refunds. More on the latter later in this very chapter.

The basic reservation times mentioned here do still apply for Multipart Captures! If this time is exceeded, the reservation could void and the money flow will be rejected by the card holders bank!

The overall amount you submit is not checked on the test-environment, as it is rejected by the processor/acquirer! So it is indeed possible to capture more, than authorized!

Finalizing a Capture-Chain

After a transaction has been captured to the merchant's liking using Multipart Capture, it should be finalized, in order to seclude the transaction. There are two different ways to finalize a Multipart Capture. Each covering one specific case, that should be differentiated, by asking one specific question:

Does the merchant intend to capture a final amount, or not?

Once finalized, a transaction cannot be opened again. Make sure, that you really want to finalize the transaction. Other captures won't be possible!

Finalizing, while also capturing a certain amount

Like mentioned previously, make sure to not exceed the initially authorized amount, or the capture will fail!

In order to capture a final amount, the merchant-system simply needs to execute Multipart Capture, whilst setting the parameter Type to "FINAL". A full request then may look like this:

{
   "RequestHeader": {
     "SpecVersion": "1.10",
     "CustomerId": "[your customer id]",
     "RequestId": "[unique request identifier]",
     "RetryIndicator": 0
   },
   "TransactionReference": {
       "TransactionId": "723n4MAjMdhjSAhAKEUdA8jtl9jb"
   },
   "Amount": {
       "Value": 1000,
       "CurrencyCode": "CHF"
   },
   "Type": "FINAL",
   "OrderPartId": "123456790"
}

Finalizing without capturing/ Capturing with amount 0

In order to avoid confusion and merchants accidentally executing the wrong request, the finalization with amount 0 is done through a completely different request called Multipart Finalize. Executing this request will close the transaction without transferring any money.

Finalize may only be executed, if the remaining amount is greater, than 0!

If you use a normal Multipart Capture to capture the whole transaction amount, please make sure, that the last partial capture is marked as "Type": "FINAL".

Executing a Multipart Finalize on such a transaction will lead to an error.

Why do you need to finalize a transaction?

There are two reasons, why you, the merchant, should finalize a transaction, once you have finished all your actions:

  1. It is the cleaner process. For you, the merchant, this is the cleaner solution and helps keeping track of every transaction and its status, not just inside your own system, but also inside the Saferpay Backoffice, where still open and closed transactions, will be marked as such!

  2. It means less hassle for your customers! Each time you successfully authorize a credit card, the authorized amount gets reserved on the cardholders credit limit. That effectively means, that he/she cannot use this money, as long as you haven't claimed the money, or the reservation voids, after a certain time-frame. A finalization will open up the credit-limit for the cardholder, so he/she may use it again, which is especially important in situations, where the merchant does not want, or can't claim all the money originally authorized!

Handling Refunds

Since Multipart Captures basically split an existing transaction into multiple parts, refunds also need to be processed in a different way. Unlike normal Refunds, you now need to reference each Capture you want to refund individually!

To do so, you have to reference the CaptureId from the Multipart Capture Response, you want to refund. Remember, that all CaptureIds have the suffix _c for that reason.

A Refund request may look like this then:

{
  "RequestHeader": {
    "SpecVersion": "1.10",
    "CustomerId": "[your customer id]",
    "RequestId": "[your request id]",
    "RetryIndicator": 0
  },
  "Refund": {
    "Amount": {
      "Value": 100,
      "CurrencyCode": "CHF"
    }
  },
  "CaptureReference": {
    "CaptureId": "723n4MAjMdhjSAhAKEUdA8jtl9jb_c"
  }
}

Like every other Refund, these too need to be captured. However please make sure to use the normal Capture request in this case and NOT MultipartCapture! Refunds cannot be split into multiple parts, like authorizations!

Last updated