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. Payment Requests

Get Payment Request

Fetch a single payment request

Read one payment request

GET https://api.finove.com.br/api/v1/merchant/payment-requests/:id

Path Parameters

Name
Type
Description

id*

String

id (or 'code' alias)

 {
            "id": "7fa09437-64e8-4c38-9a72-2f319c8a1c72",
            "meta": {},
            "amount": 100000,
            "currency": "BRL",
            "orderId": "91",
            "orderDescription": "5",
            "merchantAccountId": "03c2b5df-e736-4d5c-a09a-1e2deda20f5d",
            "paymentId": "1627bc8b-90d5-4477-ac20-e745503c09f0",
            "payment": {
                "id": "1627bc8b-90d5-4477-ac20-e745503c09f0",
                "status": "captured"
            },
            "userId": null,
            "merchantSubsidyRate": null,
            "merchantSubsidyAmount": null,
            "installmentsCountMin": null,
            "installmentsCountMax": null,
            "status": "completed",
            "customerTaxId": "28094307000118",
            "createdAt": "2022-07-06T20:07:03.124Z",
            "updatedAt": "2022-07-06T20:08:26.647Z",
            "expiresOn": "2022-07-08",
            "firstInstallmentDate": null,
            "code": "7fa09437-64e8-4c38-9a72-2f319c8a1c72",
            "url": "http://finavo.localhost:3001/financing/7fa09437-64e8-4c38-9a72-2f319c8a1c72",
            "existingBorrower": true,
            "merchantSubsidyType": "none",
            "financingStatus": "completed"
        },
PreviousList Payment RequestsNextPayments

Last updated 2 years ago

Was this helpful?