SEPA Instant Credit Transfers
Update specific SEPA Instant limits for an account
Partially update the SEPA Instant limits. This allows partners to set a daily and a per-transaction limit. By default, the account has no limit set. Only the limits specified in the request will be modified; other limits will remain unchanged.
patch/v1/accounts/{account_id}/sepa_instant_limits
Path parameters
account_idstring required
Request body
Example request
{
"daily_limit": {
"value": 1000000,
"unit": "cents",
"currency": "EUR"
},
"per_transaction_limit": {
"value": 500000,
"unit": "cents",
"currency": "EUR"
}
}Response
Successful response
Example response
{
"daily_limit": {
"value": 1000000,
"unit": "cents",
"currency": "EUR"
},
"daily_used": {
"value": 350000,
"unit": "cents",
"currency": "EUR"
},
"daily_remaining": {
"value": 650000,
"unit": "cents",
"currency": "EUR"
},
"per_transaction_limit": {
"value": 500000,
"unit": "cents",
"currency": "EUR"
}
}