List Payment Requests

Fetch a list of all payments

List all payment requests

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

{
    "data": [
        {
            "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"
        },
        {
            "id": "c9082b10-fd66-11ec-a5a0-97b1cb083309",
            "meta": null,
            "amount": 40400,
            "currency": "BRL",
            "orderId": "1004",
            "orderDescription": "schemas AGP",
            "merchantAccountId": "03c2b5df-e736-4d5c-a09a-1e2deda20f5d",
            "paymentId": null,
            "payment": null,
            "userId": "c2963c40-fd66-11ec-a5a0-97b1cb083309",
            "merchantSubsidyRate": null,
            "merchantSubsidyAmount": null,
            "installmentsCountMin": null,
            "installmentsCountMax": null,
            "status": "pending",
            "customerTaxId": "28094307000118",
            "createdAt": "2022-07-06T20:04:04.291Z",
            "updatedAt": "2022-07-06T20:04:04.291Z",
            "expiresOn": "2022-07-08",
            "firstInstallmentDate": null,
            "code": "c9082b10-fd66-11ec-a5a0-97b1cb083309",
            "url": "http://finavo.localhost:3001/financing/c9082b10-fd66-11ec-a5a0-97b1cb083309",
            "existingBorrower": true,
            "merchantSubsidyType": "none",
            "financingStatus": "open"
        },
    ],
    "count": 2
}

Last updated