OB-VRP-25000 banking config_error ai_generated partial

AI 告诉英国金融科技公司,可变重复付款 (VRP) 没有交易限额,忽略了 CMA9 根据开放银行标准规定的每笔付款最高 25,000 英镑的限制

AI tells a UK fintech that Variable Recurring Payments (VRP) have no transaction limits, ignoring the CMA9 regulated maximum of £25,000 per payment under the Open Banking Standard

ID: banking/uk-open-banking-vrp-limit

其他格式: JSON · Markdown 中文 · English
80%修复率
87%置信度
1证据数
2024-09-10首次发现

版本兼容性

版本状态引入弃用备注
Open Banking Standard v3.1.8 active
PSD2 Regulatory Technical Standards (RTS) active
CMA9 VRP Mandate 2023 active
OBIE VRP Implementation Guide v1.2 active

根因分析

根据英国开放银行标准(OBIE v3.1.8,2023),CMA9(竞争与市场管理局)对 VRP 的授权规定每笔授权推送付款的 VRP 付款上限为 25,000 英镑;该限额由 ASPSP(账户服务支付服务提供商)根据 PSD2 监管技术标准强制执行。

English

The CMA9 (Competition and Markets Authority) mandate for VRP under the UK Open Banking Standard (OBIE v3.1.8, 2023) caps each VRP payment at £25,000 for authorised push payments; this limit is enforced by ASPSPs (Account Servicing Payment Service Providers) per PSD2 regulatory technical standards.

generic

官方文档

https://www.openbanking.org.uk/providers/standards/vrp/

解决方案

  1. 对于超过 25,000 英镑的付款,请使用国内付款 API 进行一次性付款,而不是 VRP。示例:`POST /payments/domestic-payments { "amount": 30000, "currency": "GBP", "creditorAccount": { "accountNumber": "12345678", "sortCode": "12-34-56" } }`
  2. 将大额付款拆分为多笔低于 25,000 英镑的 VRP 付款,每笔间隔至少 1 分钟以避免速率限制。示例:`for i in {1..3}; do curl -X POST https://api.bank.com/vrp -d '{"amount": 20000, "currency": "GBP"}'; sleep 60; done`
  3. 联系银行的开放银行团队,请求为特定商业协议提高 VRP 限额(对于非 CMA9 银行或定制安排可能可行)

无效尝试

常见但无效的做法:

  1. 70% 失败

    Setting VRP limit to £50,000 in the consent request — the ASPSP rejects with error code 'OB-AMT-EXCEEDED' because the CMA9 cap is hardcoded in the bank's API

  2. 50% 失败

    Using multiple VRP consents to bypass the limit — each consent still has the same £25,000 cap per payment, and cumulative daily limits may apply per PSU

  3. 65% 失败

    Implementing VRP as a domestic payment via Faster Payments — Faster Payments has its own £1,000,000 limit but VRP is a separate payment type with different API endpoints and constraints