ChangelogRelease History

Changelog

Track the latest updates, new features, and improvements in Apara's platform and API.

Recent Updates

Stay up to date with the latest apara releases. Check this changelog regularly for new features, endpoint additions, bug fixes, and any breaking changes.

2024-10-15v1.5.0
featureimprovement

New Features

  • Added new /v1/payouts endpoint for initiating borderless payouts to 200+ countries.

  • Introduced real-time webhook support for payout status updates.

Improvements

  • Enhanced Collections API with faster settlement times under 5 minutes.

  • Added support for 20+ new fiat currencies in Ramp product.

Bug Fixes

  • Fixed intermittent failures in multi-currency collections.

  • Resolved authentication issues with long-lived tokens.

// Example: New payouts endpoint
const response = await fetch('https://sandbox-api.aparatech.io/v1/payouts', {
  method: 'POST',
  headers: {
    'Authorization': `Bearer ${YOUR_API_KEY}`,
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    amount: 1000,
    currency: 'USD',
    destination: 'user@example.com'
  })
});
2024-09-20v1.4.0
featurebugfix

New Features

  • Launched /v1/collections/links endpoint to create customizable payment links.

  • Added Ramp API for buying/selling digital assets with global payment methods.

Bug Fixes

  • Corrected payout retry logic for failed transactions.

  • Improved error handling in webhook deliveries.

2024-08-10v1.3.0
breakingfeature

Breaking Changes

  • Updated authentication to require Bearer prefix in Authorization header.

  • Deprecated old /v1/transfers endpoint; migrate to /v1/payouts.

New Features

  • Integrated supported countries and tokens endpoints: /v1/supported/countries and /v1/supported/tokens.

Migration Guide

Update Headers

Update your API calls to use the new header format.

// Old
headers: { 'Authorization': YOUR_TOKEN }

// New
headers: { 'Authorization': `Bearer ${YOUR_TOKEN}` }

Replace Endpoint

Replace /v1/transfers with /v1/payouts.

Test Webhooks

Verify webhook signatures using the new HMAC-SHA256 method.

Explore Products

For migration assistance or questions about deprecations, contact support@apara.com.

Was this page helpful?

Last updated 1 day ago

Built with Documentation.AI