1. Invoices
Confirma Finance Integrations API
  • Introduction
  • Authentication
  • Environments
  • Data validation
  • Contact information
  • Go Live & Deployment Guide
  • Services
    • Services
    • Invoice Intermediation service
    • Invoice Lifecycle service
    • Debt Collection services
    • Accounting integrations
    • Print and Distribution service
      • Overview
    • Operations
      • Overview
  • Core endpoints
    • Onboarding
      • Introduction to onboarding
      • Create a new client
      • Validate access token
      • Renew access token
    • Invoices
      • Introduction to Invoices
      • Create an invoice
        POST
      • Create an Invoice Action
        POST
      • Retrieve case details
        GET
      • Retrieve distribution Information
        GET
      • Retrieve distribution Information MV v2
        GET
    • Payments
      • Introduction to Payments
      • Retrieve Payments
      • Retrieve settlements
    • Accounting
      • Introduction to accounting
      • Invoice
        • Invoice
      • Ledger
        • Ledger
        • Ledger
      • Payment
        • Payment
        • Payment
    • Operations
      • Retrieve Finvoice Credentials
  • Schemas
    • Finvoice Credentials Response
    • Invoice Header object
    • Invoice Parties
    • Invoice Attachments
    • InvoiceExtensions
    • Client Settings
    • Accounting
    • Address
    • BuyerParty
    • Collection
    • Collection Costs
    • Collection Interest
    • Contact
    • Contact Person
    • Definition Detail
    • Delivery Party
    • Distribution
    • Factoring
    • Interest
    • InvoiceAmounts
    • Invoice Content Data
    • Invoice Recipient Party
    • InvoiceReferences
    • InvoiceRowData
    • InvoiceTerms
    • PaymentData
    • Payment Details
    • PaymentState
    • PaymentTerms
    • Processing
    • SalesInvoiceRequest
    • Seller Party
Need help?
  1. Invoices

Retrieve distribution Information

GET
https://staging-integrations.confirmafinance.com/api/v1/partner/invoice/distribution
invoicedistribution
Returns a paginated or filtered list of invoices with print and distribution status for each — how and when the invoice was produced and sent, plus links to related files when available.
Intended for creditor integrations that need to track distribution and payment-control handoff (including case identifiers for follow-up calls).
Save the case id
When you process the response, persist the case identifier with each invoice—you need it to retrieve case details for that invoice later.

Request

Authorization
Add parameter in header
X-Api-Key
Example:
X-Api-Key: ********************
Query Params

Responses

🟢200
application/json
Bodyapplication/json

Example
{
    "metaData": {
        "totalCount": 0,
        "successfulCount": 0,
        "failedCount": 0,
        "filtersApplied": {
            "invoiceNumber": null,
            "fromInvDate": "string",
            "toInvDate": "string",
            "fetchType": null,
            "defaultLast30DaysApplied": true
        }
    },
    "invoices": [
        {
            "invoiceNumber": 0,
            "distributionStatus": "string",
            "distributionMethod": null,
            "distributionMessage": null,
            "dates": {
                "createdAt": "string",
                "printedAt": null,
                "distributedAt": null,
                "paymentControlActivatedAt": null
            },
            "file": {
                "url": "string"
            },
            "paymentControl": {
                "enabled": true,
                "agency": "string",
                "status": "string",
                "caseId": null
            },
            "errors": [
                {
                    "errorCode": "string",
                    "errorDescription": "string",
                    "errorType": "string"
                }
            ]
        }
    ]
}
🟠401Unauthorized
Previous
Retrieve case details
Next
Retrieve distribution Information MV v2
Built with