如何设置Adyen收单行帐户



我在Adyen上测试仅适用于API的MB WAY付款方式时遇到问题https://docs.adyen.com/payment-methods/mb-way/api-only

在我按照此处所述发送请求之后https://docs.adyen.com/payment-methods/mb-way/api-only#make-支付

curl https://checkout-test.adyen.com/v68/payments 
-H 'x-api-key: YOUR_API_KEY' 
-H 'content-type: application/json' 
-d '{
"merchantAccount": "YourCompanyECOM",
"reference": "My first Adyen test payment",
"amount": {
"value": 1000,
"currency": "EUR"
},
"paymentMethod": {
"type": "scheme",
"encryptedCardNumber": "test_4111111111111111",
"encryptedExpiryMonth": "test_03",
"encryptedExpiryYear": "test_2030",
"encryptedSecurityCode": "test_737"
}
}'

我收到这个回复

{
"status": 500,
"errorCode": "905_1",
"message": "Could not find an acquirer account for the provided txvariant (mbway), currency (EUR), and action (AUTH).",
"errorType": "configuration",
"pspReference": "GBSGRNJVSBLZNN82"
}

到目前为止,我还没有找到在Adyen仪表板上设置收单行账户的方法。有这个选择吗,或者我需要做其他事情来让它发挥作用?

这种错误可能有以下原因之一:

  • 货币未配置或不受支持
  • 最低金额设置过低
  • 您的帐户上未配置付款方式
  • 不支持付款类型(shopperInteraction(

此错误的完整文档在此处

最新更新