1. Vendor (Recipient)
Fintainium APIs
  • Overview
  • Quick Start
  • Use Cases
  • Recipies
    • Connect with Vendor
    • Pay a Vendor
  • API Reference
    • AP Payouts (Accounts Payable)
      • Vendor (Recipient)
        • Create new vendor
          POST
        • Update Vendor
          PUT
        • View Vendor Details
          POST
      • Payments (Payouts)
        • Initiate Payment
        • Add Payment Method
      • Bills
        • Create new Bill
      • Country State City
        • GET City List by State Name/ID/Code
    • AR Collection (Accounts Receivable)
      • Invoices
        • Create new Invoice
      • Customers
        • Create new customer
      • Payment (Collection)
        • Initiate Payment
        • Add Payment Method
    • Simplified Payouts
      • Send Payouts
    • Transactions
      • Retrieve Transaction Status
    • Webhooks
      • Register for an Event
      • Get Webhook Registration Status
    • Sub-Ledger
      • Retrieve Balance
  1. Vendor (Recipient)

Update Vendor

PUT
https://staginggateway.fintainium.com/gateway/vendor/update
The Update Vendor Details API lets your business modify information for an existing vendor in the Fintainium Network. Use this endpoint to keep vendor records accurate and up to date. This API enables businesses to update specific fields of a vendor profile within Fintainium. It supports partial updates, letting you modify only the necessary data.
Key features:
Update vendor details using identifiers such as businessId and recipient (vendor) internal ID.
Supports sparse updating: only the provided fields in the request payload are modified.
Ideal for workflows like updating contact info, changing addresses, or adjusting vendor metadata before initiating payments or communications.
Great for ensuring vendor profiles stay current without needing to resend the entire record.

Request

Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://staginggateway.fintainium.com/gateway/vendor/update' \
--header 'sessionKey;' \
--header 'Content-Type: application/json' \
--data '{
        "businessId": 586103,
        "vendor":[
            {
                "printNameOnCheck":"Test API Vendor 02",
                "internalId": "00123457",
                "companyName":"Test API Vendor 02"
            }
        ]
    }'
Response Response Example
{}
Modified at 2025-09-04 18:01:22
Previous
Create new vendor
Next
View Vendor Details
Built with