-3

我正在尝试调用卡片 api,并想弄清楚我应该调用哪一个来获得不同的响应。

4

1 回答 1

0

这实际上取决于您使用什么来处理信用卡。但是以下端点应该足以让您朝着正确的方向前进。

直接借记(电子支票)

例如: https ://api.test.paysafe.com/directdebit/v1/accounts/ {ACCOUNT_ID}

3D Secure(通过 Visa、SecureCode 或 Secure Key 验证)

例如: https ://api.test.paysafe.com/threedsecure/v1/accounts/ {ACCOUNT_ID}

配置文件管理(重新计费或标记化)

例如: https ://api.test.paysafe.com/customervault/v1/profiles/ {PROFILE_ID}

卡支付(服务器到服务器处理 API - 非托管)

例如: https ://api.test.paysafe.com/cardpayments/v1/accounts/ {ACCOUNT_ID}

托管 API(托管解决方案)

例如: https ://api.test.netbanx.com/hosted/v1/orders

有关更多信息,您可以随时访问开发者中心,所有信息都在那里。

https://developer.paysafe.com/

希望这会有所帮助!

于 2016-11-15T19:35:36.710 回答