How RFIs work
1
Provider requests info
A payout provider flags that they need something — a bank statement, tax ID, proof of address, etc. The verification status changes to
action_required.2
You read the RFI
Call
GET /api/v1/verifications?account_id={biz_ tag}. The rfis array on each verification tells you what’s needed, what type of response to collect, and a human-readable description.3
You collect and submit
Get the info from your user and send it back via
PATCH /api/v1/verifications/{id} with an rfis array. We route it to the provider.4
Provider clears the RFI
Once all RFIs are resolved, the status goes back to
approved and the user can transact again.Reading RFIs
cURL
RFI fields
Only open requests are returned in the
rfis array. After you respond to an RFI it leaves the list, so any RFI still present means action is owed. The verification stays action_required until all RFIs are resolved.
Responding to RFIs
Send aPATCH to the verification’s idpf_ tag with an rfis array. Each entry needs the RFI id and a response matching the type.
Text value
For website URLs, business descriptions, tax IDs:cURL
File upload
For bank statements, ID documents, proof of address. Use thecategory and kind straight from the RFI’s requested_files so the upload matches what the provider asked for:
cURL
Sensitive data
SSNs can be submitted like any other value — they are tokenized in transit before reaching Whop’s systems, and only the tokenized reference is ever stored:cURL
value_type: "vault_token" instead.

