Finove
  • Introduction
  • Getting started
  • Authentication
    • Fetch Access Token
  • Iframe integration
  • Key terms
  • Merchant API
    • Payment Requests
      • Create Payment Request
      • List Payment Requests
      • Get Payment Request
    • Payments
      • List Payments
      • Get Payment
      • Upload invoices
        • Upload Invoices
        • Submit Invoices
    • Customers
      • List Customers
    • Simulation
      • Run simulation
      • Get Financing Terms
    • Send invites by email
  • Webhooks
    • Overview
    • Webhook events
    • Setting ups with webhooks
    • Securing your webhooks
Powered by GitBook
On this page

Was this helpful?

  1. Merchant API
  2. Payments
  3. Upload invoices

Submit Invoices

Officially "submit" the invoices that you uploaded

Since multiple invoices can be uploaded for each payment, the invoices must be "submitted" once you have uploaded all invoices related to a payment (even if it is only one invoice). Once they are submitted, we can begin the process of reviewing the invoices and ensuring they match the payment information. Once the invoices are confirmed to match the financing, we will begin processing the payment to the merchant.

Submit uploaded invoices for validation

POST https://api.finove.com.br/api/v1/merchant/payments/:paymentId/invoices/submit

Headers

Name
Type
Description

Authorization*

String

Access token received from Authentication API. Needs to be on format "Bearer <YOUR_ACCESS_TOKEN>"

{
    "files": [
        {
            "id": "c37ac25d-b028-41cf-a03d-fff831c7ba87",
            "key": "54d287a2-7209-476d-94d7-760318901c2c_your_file_name",
            "name": "your_file_name",
            "type": "application/json"
        }
    ],
    "status": "submitted"
}
PreviousUpload InvoicesNextCustomers

Last updated 2 years ago

Was this helpful?