PUT /self/{shopId}/settings/payments/balance
Body
-
isActive boolean
-
defaultCurrency string | null
-
gateways array[integer(int32)] | null
" The list of supported payment gateways. CoinbaseCommerce = 0 Stripe = 1 PayPal = 2 CashApp = 3 PayPalFf = 4 VirtualPayments = 5 Square = 6
"
Values are
0
,1
,2
,3
,4
,6
,7
,8
, or9
. -
gatewayRules object
PUT /self/{shopId}/settings/payments/balance
curl \
-X PUT https://dev.sellpass.io/self/{shopId}/settings/payments/balance \
-H "Authorization: $API_KEY" \
-H "Content-Type: application/json" \
-d '{"isActive":true,"defaultCurrency":"string","gateways":[0],"gatewayRules":{"blockVpn":true}}'
Request example
{
"isActive": true,
"defaultCurrency": "string",
"gateways": [
0
],
"gatewayRules": {
"blockVpn": true
}
}
Request examples
{
"isActive": true,
"defaultCurrency": "string",
"gateways": [
0
],
"gatewayRules": {
"blockVpn": true
}
}