This guide walks you through the steps to support FedNow / RTP withdrawals using the REST API — from verifying the destination bank supports FedNow / RTP to monitoring for settlement.Documentation Index
Fetch the complete documentation index at: https://developer.uphold.com/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
- The user has completed onboarding and has the required capabilities enabled.
FedNow withdrawals incur an additional fee. Make sure to present the quote to the user for confirmation before creating the transaction.
Walkthrough
Check available rails
Call List Rails to confirm the FedNow rail has thewithdraw feature enabled.
Select source account
FedNow withdrawals can be sourced from any account. If the selected account is not in USD, the balance will be converted at the time of the transaction using Uphold’s prevailing rate. Make sure the origin asset has the necessary features enabled. Call List accounts to retrieve the user’s accounts and let them pick the one to withdraw from.Select a bank account
The destination bank account must support FedNow or RTP, indicated by"fednow" in secondaryNetworks. Select an existing eligible account or add a new one.
Find an existing bank account
Call List external accounts and filter for accounts withtype: "bank". If no eligible account exists, proceed to link one.
status: "ok", "withdraw" in features, and "fednow" in secondaryNetworks.
Link a new bank account
If no eligible account exists, add one by calling Create external account with the user’s bank details. ThesecondaryNetworks field in the response will confirm whether the bank supports FedNow or RTP.
If
secondaryNetworks does not include "fednow", the destination bank does not support FedNow or RTP. Use ACH instead.Create a quote
Create a quote with Create quote. Passnetwork: "fednow" on the destination node to route the transfer via FedNow.
Quotes typically expire quickly. Prompt for user confirmation within the expiry window and requote if needed.
Confirm and create transaction
After the user confirms the withdrawal, call Create transaction with the quote ID to execute the transfer.account and the destination is the external-account representing the user’s bank. The transaction status is initially processing and updates to completed once the transfer settles.
Monitor for settlement
Prefer webhooks for real-time updates, or fall back to polling if webhooks are not feasible.- Webhook events (recommended):
- core.transaction.created
status: processing→ payout submitted to the bank network
- core.transaction.status-changed
status: completed→ funds delivered to the user’s bankstatus: failed→ irrecoverable error
- core.transaction.created
- Polling (fallback): Get transaction
Notify the user
Display an in-app confirmation when the transaction iscompleted, and send an email if applicable.
You now support FedNow / RTP withdrawals via the REST API.