Payable or Receivable).| Field | Type | Description |
|---|---|---|
| businessId | String | Unique ID of the business. |
| transactionType | String | Indicates whether the transaction is Payable (AP) or Receivable (AR). |
| Field | Type | Description |
|---|---|---|
| internalId | String | Recipient’s internal ID (Vendor for AP / Customer for AR). |
| name | String | Vendor or Customer name (case-insensitive). |
| transactionId | String | Bill or Invoice number. |
| fintainiumTransactionIds | Array[String] | Fintainium-generated transaction reference(s). |
| fromDate | String (MM/DD/YYYY) | Bill/Invoice date — start range. |
| toDate | String (MM/DD/YYYY) | Bill/Invoice date — end range. |
| fromDueDate | String (MM/DD/YYYY) | Bill/Invoice due date — start range. |
| toDueDate | String (MM/DD/YYYY) | Bill/Invoice due date — end range. |
| paymentMethod | String | AP (Payable): ACH, Check, VC, Rapid_PayAR (Receivable): ACH, Card(Values are not case-sensitive.) |
businessId and transactionType must always be provided.internalId or name.internalId takes precedence and name is ignored.fintainiumTransactionIds or transactionIds.fintainiumTransactionIds takes precedence and transactionIds is ignored.(fromDate, toDate) must be provided together if used — filters by bill/invoice creation date.(fromDueDate, toDueDate) must be provided together if used — filters by bill/invoice due date.ACH, Check, VC, Rapid_PayACH, CardACH, ach, Ach are treated equally).Ideal for businesses to monitor payouts, collections, and due-date-driven workflows with greater flexibility and precision.
curl --location 'https://staginggateway.fintainium.com/gateway/api/payouts/batch/transactionStatus?businessId=123&transactionType=Payable&fintainiumTransactionIds=tx1%2Ctx2%2Ctx3%2Ctx4&transactionId=INV-00123&internalId=XXXXXYYZZ&name=John%20Supplies%20Ltd&fromDate=01%2F01%2F2025&toDate=01%2F31%2F2025&fromDueDate=02%2F01%2F2025&toDueDate=02%2F28%2F2025&paymentMethod=ACH' \
--header 'sessionKey: YOUR_API_KEY_HERE'{
"type": "Payable",
"internalId": "VendorOne1",
"partyName": "Vexdor One",
"totalAmount": "$196.00",
"recipientCharge": 4.0,
"transactionAmount": "$200.00",
"depositBy": "Akil Staging Test Business",
"transactionId": "10249398193",
"fintTransactionId": "6934880",
"transactionDate": "2025-08-28T03:23:53Z",
"paymentDate": "08/28/2025",
"paymentMethod": "Virtual Credit Card",
"paymentMethodId": "1004",
"paymentReferenceNumber": "A24043J3D2KT",
"status": "Paid Card Available",
"statusId": "2003",
"errorCode": ""
}