For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Logo
LoginSandbox
Platform GuidesAPI DocsSDKMCP ServerChangelog
Platform GuidesAPI DocsSDKMCP ServerChangelog
  • Getting started
    • Introduction
    • Concepts
    • Onboarding guide
  • Use cases
    • Monetizing an AI agent
    • Pricing models for AI products
    • Configuring entitlements for AI products
  • Usage metering & events
    • Meters
    • Usage events
    • Unmatched events
    • Event reprocessing
  • Products & plans
    • Product Catalog
    • Pricing Plans
    • Features & Entitlements
  • Wallets & credits
    • Credit types & wallets
    • Credits in pricing plans
  • Customers & subscriptions
    • Customers
    • Subscriptions
    • Quotes
  • Invoicing
    • Invoices
    • Invoice corrections
      • Credit Notes
      • Refunds on Credited Invoices
    • Payment Collections
    • Tax
    • Currencies & Exchange rates
    • E-invoicing
  • Analytics & reporting
    • Insights
    • Report downloads
    • Revenue Recognition & Deferred Revenue
  • Integrations
    • CRM
    • ERP
    • Email Providers
    • Data Imports: Event File Uploads
    • Data Exports
    • Payment Service Providers
  • Settings & admin
    • Billing entities
    • Payment Options
    • User management
    • Customising invoices
    • Custom fields
    • Default platform settings
    • API key creation
    • Alert Rules
    • Workflows
  • Workflows
    • Workflow Triggers
    • Workflow Actions
    • Monitoring and Audit
    • Common Use Cases
  • For developers
    • Introduction
    • Authentication
    • Local development setup
    • API
    • Errors
    • Troubleshooting
    • Query Parameters
    • Expanding Responses
    • Idempotency
    • Timestamp formatting
    • Webhooks
    • Locale
    • MCP Server
LoginSandbox
On this page
  • Referenced Refunds on Credited Invoices
  • When to use
  • How it works
  • API flow
  • Step 1: Credit the invoice
InvoicingInvoice corrections

Refunds on Credited Invoices

Was this page helpful?
Previous

Payment Collections

Next
Built with

Referenced Refunds on Credited Invoices

When you credit an invoice that was originally paid via credit card, you may want to also trigger a referenced refund through your Payment Service Provider (PSP). A referenced refund ties the refund directly to the original payment transaction, ensuring reconciliation in both your PSP and accounting systems.


When to use

  • Invoice paid via card: Customer paid invoice using a credit card through a PSP integration.
  • Invoice is credited: You issue a credit note (partial or full).
  • Refund should flow to card: Instead of just applying credit balance in Solvimon, the PSP is instructed to return funds to the customer’s card.

How it works

  1. Credit action You create a credit note against the invoice using the Solvimon API or dashboard.

  2. Refund trigger Solvimon detects the original payment method and PSP reference. If configured, a referenced refund call is made to the PSP.

  3. PSP response

    • On success: Refund is linked to the original PSP transaction ID.
    • On failure: Solvimon marks the credit as pending refund, allowing you to retry or switch to an off-PSP refund method.

API flow

Step 1: Credit the invoice

1POST /v1/invoices/{invoice_id}/refund
2Content-Type: application/json
3
4{
5
6}