Migration to 2025-11-19
Introduction
This migration guide outlines the changes introduced in the 2025-11-19 release. In this version, we add support for using a Consent ID when initiating Autogiro payments.
To learn more about Payment Consents, we recommend reading the guides on how to create a payment consent and how to initiating a payment using payment consent.
Overview of Changes
As of the 2025-11-19 release, the request body for creating Autogiro payments has been updated. The request must now include a Consent ID instead of a Mandate ID in the provider method parameters.
If you are currently using mandates
For tenants with existing mandates who wish to upgrade to this version, please contact [email protected] so we can provide all the necessary information.
Example Request (New Version)
{
"currency": "SEK",
"method": "autogiro",
"order_items": [
{
"amount": 10000,
"merchant_id": "{{merchantId}}",
"name": "Membership",
"vat_rate": 25.0
}
],
"provider": "bankgirot",
"total_amount": 10000,
"provider_method_parameters": {
consent_id: "{{consent_id}}"
}
}Affected Endpoints
- Initiate payment
Updated 9 days ago