CreateMitBatchTransactionRequest
Batch payload for creating multiple MIT transactions in one request.
Ordered list of MIT transaction requests that will be processed asynchronously.
1 <= items <= 500Array [
The ID of the subscription to charge
uuid"01929a94-5fce-7ccc-a7e4-7e9249133b39"Amount in minor units (e.g., 1095 = 10.95 DKK)
100The currency of the transaction. If set to null, then the same currency as the subscription was created for will be used.
^[A-Z]{3}$"DKK"The merchant reference for the payment. This is typically used for the order id.
"subscription-charge-1"If the payment should be captured instantly or not.
OFFindicates that the payment should not be captured instantly.VOIDindicates that the payment should be captured instantly and if somehow the instant capture fails the payment is voided.NO_VOIDindicates that the payment should be captured instantly and if the capture fails the authorization is kept (no void is made)
"OFF""VOID""NO_VOID""OFF"The text to show on the cardholder bank statement. Many providers do not support long texts. Epay will cut the text to match the acquirer limitations.
1 <= length <= 39"WineBox subscription"The URL to receive the webhook with the transaction result
uri"https://example.com/epay/notification"A list of pass-through parameters that will be sent back on the notification URL
]
{ "transactions": [ { "subscriptionId": "01929a94-5fce-7ccc-a7e4-7e9249133b39", "amount": 100, "currency": "DKK", "reference": "subscription-charge-1", "instantCapture": "OFF", "textOnStatement": "WineBox subscription", "notificationUrl": "https://example.com/epay/notification", "attributes": { "property1": null, "property2": null } } ]}