Edit

Capture transaction

Perform a full or partial capture on a transaction. You can perform multiple partial captures on a transaction but cannot capture more than the authorized amount.

Request

POST
https://api.scanpay.dk/v2/{shopid}:trn:{trnid}/capture
  • trnid is the transaction ID you received when synchronizing.

Fields

JSON fields Description
"total": "199.95 DKK" The amount to capture.
"index": 0 Captures, refunds, and voids are all actions. To avoid duplicate actions as well as other race conditions, every action request requires an action index to be sent along with it. This index is simply the number of actions currently associated with the transaction as returned by the seq request.
"history": [
    {
        "item": 0,
        "quantity": 1,
        "total": "199.95 DKK"
    }
]

Optional meta-data for the transaction. This data is purely for UX purposes and invalid data will simply be discarded.

The scheme used by the dashboard is "item" being used as a 0-based index into the "items" array, "quantity" being how many of this item was captured or refunded, and "total" being the total amount (ie. covering the entire quantity) that was captured or refunded.

We recommend that you follow this scheme when submitting your own data.

Response

There are no defined response fields and as such this returns an empty JSON object.