Update the fiat payout configuration for a customer
Update the fiat payout configuration for the given customer ID. This configuration determines which payout method (bridge, developer, payment_provider, or customer) is used for each currency and payment rail combination.
The configuration is a nested hash structure where:
- Top-level keys are currency codes (e.g., “usd”, “eur”, “brl”, “mxn”)
- Second-level keys are payment rail codes (e.g., “wire”, “ach”, “sepa”, “pix”, “spei”)
- Values are payout names:
bridge,developer,payment_provider, orcustomer
Currently, only the following values are supported for the payout method:
- usd.wire:
developer,customer - usd.ach:
bridge - eur.sepa:
bridge - brl.pix:
payment_provider - mxn.spei:
payment_provider
Only the currency/payment rail combinations provided will be updated. Other existing configurations will remain unchanged.
Documentation Index
Fetch the complete documentation index at: https://apidocs.bridge.xyz/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Path Parameters
A UUID that uniquely identifies a resource
1 - 42[a-z0-9]*Body
Fiat payout configuration to update
Input payload for updating a customer's fiat payout configuration
A nested hash structure representing the fiat payout configuration. The top-level keys are currency codes. Each currency maps to a hash where keys are payment rail codes and values are payout names.
{
"usd": { "wire": "developer", "ach": "bridge" },
"eur": { "sepa": "bridge" },
"brl": { "pix": "payment_provider" },
"mxn": { "spei": "payment_provider" }
}Response
Successful fiat payout configuration update response
A nested hash structure representing the fiat payout configuration. The top-level keys are currency codes. Each currency maps to a hash where keys are payment rail codes and values are payout names.
{
"usd": { "wire": "developer", "ach": "bridge" },
"eur": { "sepa": "bridge" },
"brl": { "pix": "payment_provider" },
"mxn": { "spei": "payment_provider" }
}