Php Neteller paysafe api:我可以在不指定消费者的情况下创建支付句柄吗?

Php Neteller paysafe api:我可以在不指定消费者的情况下创建支付句柄吗?,php,payment,paysafe,neteller,Php,Payment,Paysafe,Neteller,因此,我正在创建一个支付处理程序,并重定向到给定的支付url 为了创建支付处理程序(并获取支付url),我必须在请求正文中指定consumerId, ex createPaymentHandler请求: { "merchantRefNum": "merchantRefNum-201", "transactionType": "PAYMENT", "neteller": { "consumerId": "netellertest_eur@neteller.com", }, "paymentType

因此,我正在创建一个支付处理程序,并重定向到给定的支付url

为了创建支付处理程序(并获取支付url),我必须在请求正文中指定consumerId, ex createPaymentHandler请求:

{
"merchantRefNum": "merchantRefNum-201",
"transactionType": "PAYMENT",
"neteller": {
"consumerId": "netellertest_eur@neteller.com",
},
"paymentType": "NETELLER",
"amount": 500,
"currencyCode": "EUR",
"returnLinks": [{
        "rel": "default",
        "href": "https://example.com/payment/",
    }
]
}

ex CreatePaymentHandlerResponse

 {
  "id": "82d57742-e2db-48ea-a726-a60e6f8265a3",
  "paymentType": "NETELLER",
  "paymentHandleToken": "PHQhlWpTRKzBXubN",
  "merchantRefNum": "5493aaf1a1d6dd13d2b53412f0ec",
  "currencyCode": "USD",
"links": [
        {
          "rel": "redirect_payment",
          "href": "https://customer.at.neteller.com/rest/payment/panel?mid=1090001806&mtid=pay_1090001806_00LwEhZ8WtIy8PmIhRCUi3JScUti6jKi_EUR&amount=0.01&currency=EUR&customerHash=741e624cf6ae4fbca4338cb5597fe531"
        }
      ]
      "dupCheck": true,
      "status": "INITIATED",
      "liveMode": true,
      "usage": "SINGLE_USE",
      "action": "REDIRECT",
      "executionMode": "SYNCHRONOUS",
      "amount": 500,
      "billingDetails": {
        "street": "George Street",
        "street2": "3 Edgar Buildings",
        "city": "Bath",
        "zip": "BA1 2FJ",
        "country": "GB"
      },
      "customerIp": "172.0.0.1",
      "timeToLiveSeconds": 899,
      "gatewayResponse": {
        "orderId": "ORD_0d676b4b-0eb8-4d78-af25-e41ab431e325",
        "totalAmount": 3599,
        "currency": "EUR",
        "status": "pending",
        "lang": "en_US",
        "processor": "NETELLER"
      },
      "neteller": {
        "consumerId": "johndoe@email.com",
        "detail1Description": "description",
        "detail1Text": "Details 1 text"
      },
      "returnLinks": [
        {
          "rel": "default",
          "href": "https://usgaminggambling.com/payment/"
        },
        {
          "rel": "on_completed",
          "href": "https://usgaminggambling.com/payment/return/success"
        },
        {
          "rel": "on_failed",
          "href": "https://usgaminggambling.com/payment/return/failed"
        }
      ],
      "txnTime": "2019-01-24T10:39:50Z",
      "updatedTime": "2019-01-24T10:39:50Z",
      "statusTime": "2019-01-24T10:39:50Z"
    }
当我重定向到payment_url时,电子邮件字段中已经填充了consumerId(“netellertest”)_eur@neteller.com)并且它是只读的

问题是,我不应该解析电子邮件,因为任何人都可以从不同的电子邮件登录到他们的Neteller帐户

有没有其他方法可以在不解析consumerId的情况下获取支付url


提前谢谢

consumerId
是必需的,如果您不通过请求,请求将失败。
用户通常使用与您系统中的电子邮件相同的电子邮件,或者您可以创建一个字段,以便消费者在重定向之前在存款页面上输入他们的电子邮件,以防他们想使用不同的电子邮件

我在旧的Neteller REST API中找到了我想要的东西


他们有一个“订单”的端点,您可以在这里创建订单,而不使用
consumerId
,并且结帐时没有只读电子邮件

最近添加了一项新功能,您可以将
consumeridlock=false
作为neteller请求对象的一部分传递。这将允许在显示签出页面后编辑电子邮件字段

文档可在此处找到:

{
    "merchantRefNum": "merchantRefNum-201",
    "transactionType": "PAYMENT",
    "neteller": {
        "consumerId": "netellertest_eur@neteller.com",
        "consumerIdLocked": false
    },
    "paymentType": "NETELLER",
    "amount": 500,
    "currencyCode": "EUR",
    "returnLinks": [
        {
            "rel": "default",
            "href": "https://example.com/payment/",
        }
    ]
}