Unified RTP and FedNow

Real-Time Payments (RTP) and FedNow are separate individual bank payments on completely separate networks. You can integrate with both payment systems on your platform to help provide a unified experience for wider coverage for your customer payment flow. RTP and FedNow can be used as dual-network routing for any Payment Service Provider (PSP), or payments platform.

With a multi-rail instant payments strategy, you can offer better uptime and redundancy across allowing payments to seamlessly switch networks without disruption.

Use Cases

  • Instant Payouts for Gig Workers or Freelancers: Offer immediate payouts and improve worker satisfaction by providing quick access to earnings.
  • Emergency Fund Transfers: Facilitate real-time disbursement of critical funds during emergencies, such as insurance payouts for account funding, disaster relief, or government assistance programs.
  • Wider Network Coverage: Add RTP and FedNow to expand and diversify your network payment options to help optimize your payment flow.

Benefits of RTP and FedNow

  • Increased Payment Coverage: Ensure broad accessibility and redundancy, allowing users to send and receive payments regardless of their bank's affiliation or network preference.
  • Enhanced Speed and Reliability: Leverage two real-time payment networks for faster transaction processing and reduces the risk of downtime, ensuring a seamless payment experience for users.
  • Reliable Payment Options: Offering dual-network support positions the platform as a forward-thinking solution, catering to diverse client needs and regulatory requirements while boosting trust and market competitiveness.

Unified RTP and FedNow Workflow

RTP - Client Priority Example

  1. Sender submits the transaction.
  2. Client checks the client priority.
  3. Client sends Create Transaction request.
  4. TabaPay sends request to TCH.
  5. The request and file format is validated.
  6. TCH sends request to receiving FI.
  7. Receiving FI sends confirmation response.
  8. TCH settles the payment.
  9. TCH notifies the Sending FI, and the Receiving FI.
  10. TabaPay sends the response to the client, and the Receiving FI posts funds to the receiving account.
  11. Client notifies the sender, and the receiver with confirmation messages.

FedNow - Client Priority Example

  1. Sender submits the transaction.
  2. Client checks the client priority.
  3. Client sends Create Transaction request.
  4. TabaPay sends request to FedNow
  5. The request and file format is validated.
  6. FedNow service sends request to receiving FI.
  7. Receiving FI sends confirmation response.
  8. FedNow settles the payment.
  9. FedNow notifies the Sending FI, and the Receiving FI.
  10. TabaPay sends the response to the client, and the Receiving FI posts funds to the receiving account.
  11. Client notifies the sender, and the receiver with confirmation messages.

How Unified RTP and FedNow Works

To send a FedNow payment through the TabaPay API, follow the outlined steps.

Simplified Flow

A simplified FedNow Payment Flow can be summarized:

  1. Client sends Query Bank request (Optional) to verify the bank enablement for FedNow or RTP.
  2. Client checks their priority for TCH or FedNow: identifies FedNow as the priority.
  3. TabaPay client sends a Create Transaction push request.
  4. TabaPay will forward this request to the FedNow network.
  5. TabaPay will return the results of the transaction in the response (informing you if it was a successful transaction or not).

1. Query Bank

You send the Query Bank API request.

Query Bank Request

{
  "routingNumber": "123456789"
}

Query Bank Response

{
  "SC": 200,
  "EC": "0",
  "RTP": true,
  "FedNow": true
}

2. Client Priority

You check the client priority on what network is the preferred client routing priority: FedNow shown.

3. Create Transaction

Create Transaction Request

You send the Create Transaction API request to TabaPay.

Request Body Parameters

FedNow and RTP transactions with type: push will push funds into an account. To Create a transaction using the FedNow, or RTP service, including the following in the request body:

  1. For FedNow, include F value in the achOptions field, OR
    For RTP, include R value in the achOptions field.
  2. Add and fill the bank object in the destinationAccount object with the designated bank information.
  3. Be sure to include the common fields for transactions found in Recipes section including referenceID, corresponding object, type, owner, and amount.
What is the bank object?

The bank object is under the destinationAccount object for a push transaction. Create Transaction describes the fields in the request.

{
	"referenceID": "myUniqueRefID3",
	"corresponding": {
		"name": {
			"first": "Ultimate",
			"last": "Debtor"
		}
	},
	"type": "push",
	"accounts": {
		"sourceAccountID": "*redacted*",
		"destinationAccount": {
			"bank": {
				"accountNumber": "111111111",
				"routingNumber": "011001234",
				"accountType": "C"
			},
			"owner": {
				"name": {
					"first": "CreditorFirstName",
					"last": "CreditorLastName"
				}
			}
		}
	},
	"achOptions": "F",
	"amount": "100.00"
}
{
"referenceID": "myUniqueRefID3",
"corresponding": {
    "name": {
        "first": "Ultimate",
        "last": "Debtor"
    }
},
"type": "push",
"accounts": {
    "sourceAccountID": "*redacted*",
    "destinationAccount": {
        "bank": {
            "accountNumber": "111111111",
            "routingNumber": "011001234",
            "accountType": "C"
        },
        "owner": {
            "name": {
                "first": "CreditorFirstName",
                "last": "CreditorLastName"
            }
        }
    }
},
"achOptions": "R",
"amount": "100.00"
}

Create Transaction Response

Create Transaction describes the fields in the response.

{
  "SC":200,
  "EC":"0",
  "transactionID":"EvgK1dpGQUenHZ2vRIxXzc",
  "networkID":"93D09O1111111111",
  "network":"FedNow",
  "networkRC":"000",
  "status":"COMPLETED"
}
{
  "SC":200,
  "EC":"0",
  "transactionID":"9Wvkd3GoywINGw2s9dsIz5",
  "networkID":"5HW1PK1111111111",
  "network":"RTP",
  "networkRC":"000",
  "status":"COMPLETED"
}

Recipes

Refer to the following recipes for RTP or FedNow examples.



Questions? Contact Sales or make a post