1. Simplified Payouts
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
        • Update Vendor
        • View Vendor Details
      • 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)
        • Add Payment Method
        • Initiate Payment
    • Simplified Payouts
      • Send Payouts
        POST
      • Resend Payout Email Notification
        POST
      • Cancel Payout
        PUT
    • Transactions
      • Retrieve Transaction Status
    • Webhooks
      • Register for an Event
      • Get Webhook Registration Status
    • Sub-Ledger
      • Retrieve Balance
  1. Simplified Payouts

Resend Payout Email Notification

POST
https://staginggateway.fintainium.com/gateway/api/payouts/batch/resendEmail
The Resend Payout Email Notification API enables bulk resending of the "Payment Notification From [Business Name]" email to recipients.
For each resend request, the system performs the following checks:
Payment Method Check: Verify if the recipient already has a payment method selected for the payout.
Default Method Check: Verify if the recipient already has a default payment method selected.
Resend Trigger: If neither condition is met, the email notification is resent to the recipient.
Email & Link Behavior:
If the recipientEmailAddress matches the recipient's existing email, the notification is simply resent.
If a new email address is provided, the system updates the recipient's email and sends the notification to the new address.
Any previous payment link ("Click here to receive your payment") is expired upon resend.
Note: The email field is unique per recipient. You cannot update a recipient's email to one already used by another active recipient.

Field: actionCode#

The actionCode field indicates the overall result of the bulk resend operation:
CodeResultDescription
00All SuccessAll transactions in the batch were processed successfully.
01Partial SuccessMix of successful and failed transactions in the batch.
02All FailedAll transactions in the batch failed.

Field: statusCode#

CodeStatusDescription
200SuccessAPI body was correct and all emails sent successfully.
207Partial SuccessAPI body was correct; mix of success and fail responses.
400Bad RequestOne or more required fields are missing or all emails failed.
401UnauthorizedAPI session key at header was incorrect.
404Not FoundA referenced entity was not found (see message for details).
500Server ErrorInternal server error.

Request

Header Params

Body Params application/json

Examples

Responses

🟢200Success
text/plain
🟠400
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://staginggateway.fintainium.com/gateway/api/payouts/batch/resendEmail' \
--header 'sessionKey: YOUR_API_KEY_HERE' \
--header 'Content-Type: application/json' \
--data-raw '{
  "businessId": 217819,
  "recipients": [
    {
      "recipientInternalId": "379",
      "transactionId": "1231",
      "recipientEmailAddress": "abc@xyz.com"
    },
    {
      "recipientInternalId": "380",
      "transactionId": "1232",
      "recipientEmailAddress": "abc2@xyz.com"
    },
    {
      "recipientInternalId": "381",
      "transactionId": "1233",
      "recipientEmailAddress": "abc3@xyz.com"
    }
  ]
}'
Response Response Example
200 - Example 1
{
  "statusCode": 200,
  "actionCode": "00",
  "message": "3 emails sent successfully",
  "failedCount": 0,
  "failedMessageList": [],
  "successCount": 3,
  "transactions": [
    { "transactionId": "1231", "status": "sent" },
    { "transactionId": "1232", "status": "sent" },
    { "transactionId": "1233", "status": "sent" }
  ],
  "transmissionDateTime": "2023-08-30T06:10:13.505+00:00"
}
Modified at 2026-06-08 18:11:22
Previous
Send Payouts
Next
Cancel Payout
Built with