Skip to main content
PATCH
/
customers
/
{customerID}
/
fiat_payout_configuration
Update the fiat payout configuration for a customer
curl --request PATCH \
  --url https://api.bridge.xyz/v0/customers/{customerID}/fiat_payout_configuration \
  --header 'Api-Key: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "usd": {
    "wire": "customer"
  }
}
'
{
"fiat_payout_configuration": {
"usd": {
"wire": "customer",
"ach": "bridge"
},
"eur": {
"sepa": "bridge"
},
"brl": {
"pix": "payment_provider"
},
"mxn": {
"spei": "payment_provider"
}
}
}

Authorizations

Api-Key
string
header
required

Path Parameters

customerID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42

Body

application/json

Fiat payout configuration to update

Input payload for updating a customer's fiat payout configuration

fiat_payout_configuration
object
required

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.

Example:
{
"usd": { "wire": "developer", "ach": "bridge" },
"eur": { "sepa": "bridge" },
"brl": { "pix": "payment_provider" },
"mxn": { "spei": "payment_provider" }
}

Response

Successful fiat payout configuration update response

fiat_payout_configuration
object
required

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.

Example:
{
"usd": { "wire": "developer", "ach": "bridge" },
"eur": { "sepa": "bridge" },
"brl": { "pix": "payment_provider" },
"mxn": { "spei": "payment_provider" }
}