DOCS · MIGRATION
Migration guide
⚠ Quincent is being deprecated.
These docs cover moving your integration to MoneyMate before the December 31, 2026 end-of-life date. Quincent API reference remains available for existing integrations.
This guide walks you through migrating from Quincent to MoneyMate v9. Most integrations map cleanly; the main change is that MoneyMate models a payment as a "value unit movement" rather than a "charge". If you're not yet a Quincent customer, start directly on MoneyMate.
// before (Quincent)
const charge = await quincent.charges.create({ amount: 4200, currency: 'usd' });
// after (MoneyMate v9)
const movement = await moneymate.v9.valueUnits.initiateMovement({
valueQuantity: 4200, // formerly "amount"
currency: 'USD',
});
Changelog
Notable API changes on the road to end of life.