Create Real-Time Payments File


TodayPayments.com is the leading platform for building, managing, and delivering FedNow® and RTP® Request for Payment (RfP) transactions—in real time, at scale, and across all financial institutions. From batch uploads to digital invoicing, we combine ISO 20022 data precision with mobile-first delivery, allowing businesses and credit unions to offer instant credit transactions with absolute confidence. Built for modern finance. Trusted by high-volume businesses. Powered by certainty.

 

Create FedNow® and RTP® Real-Time Payment Files for Any Credit Union

The era of real-time banking is here—and it's built on speed, transparency, and trust. As financial institutions, credit unions, and fintechs embrace FedNow® and RTP® networks, the need to easily create, import, and upload Request for Payment (RfP) files for both one-time and recurring payments has never been greater. At TodayPayments.com, we empower you to generate real-time payment files and deliver instant credit transactions using ISO 20022-rich data, no matter the size or scope of your business.

FedNow® instant payments and the RTP® network allow businesses and credit unions to initiate and settle payments in real time. With Request for Payment (RfP) capabilities, your organization can send structured payment requests that prompt instant action—and immediate funding.

TodayPayments.com provides a complete platform to:

  • Create single or batch RfP files
  • Import and upload to any U.S. credit union or financial institution
  • Send one-time or recurring transactions across B2B and C2B channels

Each transaction includes full remittance data and follows ISO 20022 message specifications, ensuring clear communication and instant reconciliation.

Support for Batch, One-Time, and Recurring Transactions in Any Format

Whether you're issuing recurring bills, payroll distributions, or ad-hoc payments, TodayPayments.com simplifies the process with robust file format compatibility and repeatable workflows.

We support:

  • One-time payments for invoices, vendor disbursements, or refunds
  • Recurring payments for subscriptions, salaries, or scheduled payouts
  • Batch uploads for mass transactions to multiple recipients

Our platform accepts:

  • ���� .Excel — Easy to use and perfect for manual uploads
  • ���� .XML — Ideal for core banking and ERP integration
  • ���� .JSON — For real-time API and software-based payment processing

Each file is structured using ISO 20022-rich data messaging, allowing instant credit delivery and detailed audit trails.


Send RfPs via Mobile, SMS, or Digital Invoicing with Funding Certainty

What makes Request for Payment (RfP) powerful isn’t just the speed—it’s the certainty it provides to the payee. With TodayPayments.com, you can issue RfPs through:

  • ���� Mobile applications
  • ���� SMS/text payment links
  • ���� Email-based digital invoices

Each request carries structured metadata, such as invoice numbers, amounts, and due dates, and allows recipients to approve and fund the payment in seconds—eliminating delays and manual tracking.

Real-time visibility
Full remittance details
Instant settlement
Seamless reconciliation

To create a Real-Time Payments (RTP) file using different formats such as ISO 20022, XML, CSV, and JSON, here’s a breakdown of how to generate files in each format for Real-Time Payments using the right coding structures.

1. ISO 20022 (XML-based)

ISO 20022 is the global standard for financial messages, especially used in systems like FedNow or SWIFT. The message type for Real-Time Payments under ISO 20022 could be pain.001 for customer-initiated payments or pain.013 for requests for payment.

Example: Creating a Payment Instruction in ISO 20022 XML Format (pain.001)

<?xml version="1.0" encoding="UTF-8"?>

<Document xmlns="urn:iso:std:iso:20022:tech:xsd:pain.001.001.03">

  <CstmrCdtTrfInitn>

    <GrpHdr>

      <MsgId>RTP123456789</MsgId>

      <CreDtTm>2023-09-13T10:00:00</CreDtTm>

      <NbOfTxs>1</NbOfTxs>

      <CtrlSum>100.00</CtrlSum>

      <InitgPty>

        <Nm>Sender Name</Nm>

      </InitgPty>

    </GrpHdr>

    <PmtInf>

      <PmtInfId>Payment123456</PmtInfId>

      <PmtMtd>TRF</PmtMtd>

      <BtchBookg>false</BtchBookg>

      <NbOfTxs>1</NbOfTxs>

      <CtrlSum>100.00</CtrlSum>

      <PmtTpInf>

        <SvcLvl>

          <Cd>SEPA</Cd>

        </SvcLvl>

      </PmtTpInf>

      <Dbtr>

        <Nm>Debtor Name</Nm>

        <PstlAdr>

          <Ctry>US</Ctry>

        </PstlAdr>

      </Dbtr>

      <DbtrAcct>

        <Id>

          <IBAN>US123456789012345678</IBAN>

        </Id>

      </DbtrAcct>

      <Cdtr>

        <Nm>Creditor Name</Nm>

        <PstlAdr>

          <Ctry>US</Ctry>

        </PstlAdr>

      </Cdtr>

      <CdtrAcct>

        <Id>

          <IBAN>US987654321098765432</IBAN>

        </Id>

      </CdtrAcct>

      <Amt>

        <InstdAmt Ccy="USD">100.00</InstdAmt>

      </Amt>

    </PmtInf>

  </CstmrCdtTrfInitn>

</Document>

2. XML Format (Non-ISO 20022)

If you are working with a more simplified XML format for Real-Time Payments, here’s an example that can be customized as per your payment system:

<?xml version="1.0" encoding="UTF-8"?>

<RealTimePayment>

  <Transaction>

    <TransactionID>RTP12345</TransactionID>

    <Amount currency="USD">100.00</Amount>

    <Sender>

      <Name>John Doe</Name>

      <AccountNumber>123456789</AccountNumber>

    </Sender>

    <Receiver>

      <Name>Jane Smith</Name>

      <AccountNumber>987654321</AccountNumber>

    </Receiver>

    <PaymentDate>2023-09-13</PaymentDate>

  </Transaction>

</RealTimePayment>

3. CSV Format

A CSV (Comma Separated Values) format is a simple format where the payment details are stored as rows of data.

Example: CSV Format for Real-Time Payment

TransactionID,SenderName,SenderAccountNumber,ReceiverName,ReceiverAccountNumber,Amount,Currency,PaymentDate

RTP12345,John Doe,123456789,Jane Smith,987654321,100.00,USD,2023-09-13

In this case, you can easily import/export this CSV file from various financial systems.

4. JSON Format

JSON (JavaScript Object Notation) is commonly used in web-based systems and API-driven integrations.

Example: JSON Format for Real-Time Payment

{

  "RealTimePayment": {

    "TransactionID": "RTP12345",

    "Amount": {

      "currency": "USD",

      "value": "100.00"

    },

    "Sender": {

      "Name": "John Doe",

      "AccountNumber": "123456789"

    },

    "Receiver": {

      "Name": "Jane Smith",

      "AccountNumber": "987654321"

    },

    "PaymentDate": "2023-09-13"

  }

}

Key Considerations:

  • ISO 20022 XML is the standard for financial messaging in real-time payments. Use this for official payment networks like FedNow or SWIFT.
  • CSV and JSON are simpler formats that are often used for easy data exchange between systems, especially if the financial system does not require strict adherence to ISO standards.
  • XML (Non-ISO 20022) is used when a more flexible XML schema is acceptable, particularly in smaller networks or custom payment systems.

How to Implement:

  • Integration with Financial Systems: Most payment platforms, such as QuickBooks, banks, or custom financial systems, can process these formats depending on their capabilities.
  • APIs: If you’re sending these formats to a real-time payment platform, ensure you’re using the platform's API or secure file transfer method.

Let TodayPayments.com know if you need more specific details or help integrating these formats into your system!

Real-Time Payment Files, Instant Uploads, and Payment Certainty—Only at TodayPayments.com

Why settle for outdated ACH uploads or delayed payments?

With TodayPayments.com, you gain:

  • ���� The power to create and upload FedNow® and RTP® RfP files to all credit unions
  • ���� Full support for one-time or recurring payments, B2B and C2B
  • ���� Flexible file formats: Excel, XML, and JSON—all ISO 20022-compliant
  • ���� Mobile, text, and invoicing support with real-time funding confirmation

���� Modernize your payment operations and give your payees what they want most: certainty.

���� Visit TodayPayments.com and experience the future of real-time payments—today.

 

Creation Request for Payment Bank File

Call us, the .csv and or .xml Request for Payment (RfP) file you need while on your 1st phone call! We guarantee our reports work to your Bank and Credit Union. We were years ahead of competitors recognizing the benefits of RequestForPayment.com. We are not a Bank. Our function as a role as an "Accounting System" in Open Banking with Real-Time Payments to work with Billers to create the Request for Payment to upload the Biller's Bank online platform. U.S. Companies need help to learn the RfP message delivering their bank. Today Payments' ISO 20022 Payment Initiation (PAIN .013) shows how to implement Create Real-Time Payments Request for Payment File up front delivering a message from the Creditor (Payee) to it's bank. Most banks (FIs) will deliver the message Import and Batch files for their company depositors for both FedNow and Real-Time Payments (RtP). Once uploaded correctly, the Creditor's (Payee's) bank continues through a "Payment Hub", will be the RtP Hub will be The Clearing House, with messaging to the Debtor's (Payer's) bank. Request for Payment

... easily create Real-Time Payments RfP files. No risk. Test with your bank and delete "test" files before APPROVAL on your Bank's Online Payments Platform. Today Payments is a leader in the evolution of immediate payments. We were years ahead of competitors recognizing the benefits of Same-Day ACH and Real-Time Payments funding. Our business clients receive faster availability of funds on deposited items and instant notification of items presented for deposit all based on real-time activity. Dedicated to providing superior customer service and industry-leading technology.

Pricing with our Request For Payment Professionals

hand shake

 1) Free ISO 20022 Request for Payment File Formats, for FedNow and Real-Time Payments (The Clearing House) .pdf for you manually create "Mandatory" (Mandatory data for completed file) fields, start at page 4, with "yellow" highlighting. $0.0 + No Support


2) We create .csv or .xml formatting using your Bank or Credit Union. Create Multiple Templates. Payer/Customer Routing Transit and Deposit Account Number may be required to import with your bank. You can upload or "key data" into our software for File Creation of "Mandatory" general file.

Fees = $57 monthly, including Support Fees and Batch Fee, Monthly Fee, User Fee, Additional Payment Method on "Hosted Payment Page" (Request for file with an HTML link per transaction to "Hosted Payment Page" with ancillary payment methods of FedNow, RTP, ACH, Cards and many more!) + $.03 per Transaction + 1% percentage on gross dollar file,


3) Payer Routing Transit and Deposit Account Number is NOT required to import with your bank. We add your URI for each separate Payer transaction.

Fees Above 2) plus $29 monthly additional QuickBooks Online "QBO" formatting, and "Hosted Payment Page" and WYSIWYG


4) Above 3) plus Create "Total" (over 600 Mandatory, Conditional & Optional fields of all ISO 20022 Pain .013) Price on quote.

Each day, thousands of businesses around the country are turning their transactions into profit with real-time payment solutions like ours.



Activation Dynamic RfP Aging and Bank Reconciliation worksheets - only $49 annually

1. Worksheet Automatically Aging for Requests for Payments and Explanations

- Worksheet to determine "Reasons and Rejects Coding" readying for re-sent Payers.
- Use our solution yourself. Stop paying accountant's over $50 an hour. So EASY to USE.
- No "Color Cells to Match Transactions" (You're currently doing this. You won't coloring with our solution).
- One-Sheet for Aging Request for Payments (Merge, Match and Clear over 100,000 transactions in less than 5 minutes!)
- Batch deposits displaying Bank Statements are not used anymore. Real-time Payments are displayed "by transaction".
- Make sure your Bank displaying "Daily FedNow and Real-time Payments" reporting for "Funds Sent and Received". (These banks have Great Reporting.)

2. Bank Reconciliation with as Payee FedNow & Real-Time Payments for Accrual, Cash and Hybrid Basis and QBO - Undeposited Funds


Contact Us for Request For Payment payment processing