storedPaymentMethods POST 方法在 Adyen 中不起作用

问题描述 投票:0回答:1

我使用 Adyen 作为支付集成方法。存储卡并获取令牌以进行进一步付款。我正在尝试调用 https://checkout-test.adyen.com/v71/storedPaymentMethods API,但得到“000 Service storePaymentMethods not present”作为响应。我正在关注 https://docs.adyen.com/api-explorer/Checkout/71/post/storedPaymentMethods 文档,在帐户 API 日志中看不到此 API 的调用请求,而其他 API 的调用却被列出。 下面是卷曲:

curl --location --request POST 'https://checkout-test.adyen.com/v70/storePaymentMethods' \ --header 'X-API-key: KEY' \ --header 'Content-Type: application/json' \ --data-raw '{ "merchantAccount":"merchantAccount", "shopperReference":"Shopper reference", "paymentMethod":{ "type":"scheme", "encryptedCardNumber":"test_4111111111111111", "encryptedExpiryMonth":"test_03", "encryptedExpiryYear":"test_2030", "encryptedSecurityCode":"test_737", "holderName":"name" }, "recurringProcessingModel":"UnscheduledCardOnFile" }'

我不确定缺少什么或是否需要添加帐户的任何权限才能调用 API。

想要添加 storePaymentMethods 的 GET 方法正在运行并给出正确的结果。

node.js payment-gateway adyen
1个回答
0
投票

端点 URL 存在错误:它是

https://checkout-test.adyen.com/v70/storedPaymentMethods
(而不是 storePaymentMethods)。

© www.soinside.com 2019 - 2024. All rights reserved.