curl -i -X PUT \
'https://www.rebilly.com/_mock/catalog/all/gateway-accounts/{id}/financial-settings' \
-H 'Content-Type: application/json' \
-H 'REB-APIKEY: YOUR_API_KEY_HERE' \
-d '{
"settlementSettings": {
"settlementCurrency": "USD",
"settlementPeriod": {
"method": "date-interval",
"duration": 1,
"unit": "second",
"anchor": {
"method": "day-of-month",
"day": 1,
"time": "14:15:22Z"
}
},
"advancedSettings": [
{
"filter": "currency:EUR,GBP",
"settlementCurrency": "USD",
"settlementPeriod": {
"method": "date-interval",
"duration": 1,
"unit": "second",
"anchor": {
"method": "day-of-month",
"day": 1,
"time": "14:15:22Z"
}
}
}
]
},
"riskReserveSettings": [
{
"filter": "paymentInstrument.method:payment-card",
"bips": 100,
"period": {
"method": "date-interval",
"duration": 1,
"unit": "second",
"anchor": {
"method": "day-of-month",
"day": 1,
"time": "14:15:22Z"
}
}
}
]
}'