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)

View Vendor Details

POST
https://staginggateway.fintainium.com/gateway/vendor/get
The View Vendor Details API retrieves information about a specific vendor in the Fintainium Network. This allows businesses to confirm vendor details before initiating payouts or updating records.
Key features:
Retrieve vendor details by businessId and other identifiers.
Validate vendor information before transactions.
Integrates with vendor management workflows (e.g., Create or Update Vendor).
Useful for reconciliation, compliance checks, and confirming vendor status prior to payouts.

Request

Header Params

Body Params text/plain
Examples

Responses

🟢200View Vendor Details
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://staginggateway.fintainium.com/gateway/vendor/get' \
--header 'sessionKey: z4FEVdhfbD7d2SVGG0B8QF1rXUTMqzUDnczfjj12OT1' \
--header 'Content-Type: text/plain' \
--data '{
"businessId": 3295462,
"internalId": 1004
}'
Response Response Example
{
    "companyName": "Rapid Pay Vendor Test 01",
    "taxNo": "",
    "firstName": "Rapid Pay",
    "lastName": "Vendor",
    "emailAddress": "rapidpay05@getnada.com",
    "phoneNumber": "",
    "paymentMode": "VISA_DIRECT",
    "zipCode": "45678",
    "countryCode": "US",
    "stateCode": "AZ",
    "cityId": 25169,
    "addressLine1": "555 Rogers Ave",
    "addressLine2": "",
    "addressLine3": "",
    "addressLine4": "",
    "addressLine5": "",
    "internalId": "3",
    "vendorName": "Rapid Pay Vendor Test 01",
    "maskTaxId": false,
    "printNameOnCheck": "",
    "vendorId": "3295596",
    "enrollmentStatus": "Active",
    "enrollmentLink": ""
}
Modified at 2025-09-04 17:59:37
Previous
Update Vendor
Next
Initiate Payment
Built with