This guide walks you through resolving a Travel Rule request for information on an on-hold crypto deposit — from detecting the on-hold status to resolving the RFI and allowing the transaction to proceed.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.
Walkthrough
Detect the on-hold transaction
When a crypto deposit is placed on hold due to a Travel Rule requirement, Uphold sends acore.transaction.status-changed webhook with status: on-hold and statusDetails.reason: pending-requests-for-information.
Abbreviated — the transaction object includes additional fields.
If you are using polling instead of webhooks, check for
status: on-hold and statusDetails.reason: pending-requests-for-information on the transaction object.Notify the user
Surface the on-hold status to the user out-of-band (email or push notification) — deposits can sit on-hold indefinitely until resolved.List transaction RFIs
Call List requests for information endpoint to retrieve all RFIs associated with the transaction, then filter the results to keep only entries where type is “travel-rule”. From that filtered set, check whether any RFI has a status of “pending” — if so, the transaction is still awaiting resolution. If all travel-rule RFIs have a status of “ok”, the transaction may have already been moved out of on-hold status automatically. Make sure to re-fetch the transaction and check its current status before taking further action.
Resolve the RFI
The Travel Rule Widget allows the user to resolve a travel rule RFI for a specific transaction.Create a widget session
Create a session tied to the RFI by calling Create session withflow: deposit-form and the data: requestForInformationId. Each session is single-use and bound to a specific RFI.
Widget sessions expire after 2 minutes. If the session expires before the user opens the widget — or while they are mid-form — the widget emits an
error event. Create a new session and re-mount to let the user retry.Set up the widget
Initialize the widget using the session returned from the API and mount it into your application. The widget does not unmount itself — always callunmount() after handling any event.
The example above is for web applications. For native apps using a WebView, see Native app integration.
Handle the complete event
Once the widget emitscomplete, send the payload to your backend. The request body’s data field is the full event.detail.value object from the complete event, passed through unchanged. See complete event for the event reference.
status: ok. The transaction resumes processing automatically.
Handle cancellations
Thecancel event fires when the user closes the widget without completing the form. The transaction remains on-hold until the RFI is resolved — create a new widget session for the same RFI to let the user retry. See cancel event for the event reference.
Handle errors
Theerror event fires when an unrecoverable error occurs. See error event for the full error shape and available properties.
Testing
To trigger a Travel Rule RFI on a deposit, use a GB user account and send 30 XRP from an unhosted (self-custodial) wallet to the user’s Uphold deposit address. Verify the following:- A
core.transaction.status-changedwebhook is received withstatus: on-holdandstatusDetails.reason: pending-requests-for-information. - List requests for information returns an RFI with
type: travel-ruleandstatus: pending. - After completing the widget flow and calling Update request for information, the RFI status changes to
okand the transaction moves back toprocessing. - The transaction status updates from
processingtocompletedwithin a few minutes, assuming no other blockers.