1

是否可以在不使用 credit_card.billing_address 对象中的第 1 行、城市和州值的情况下处理信用卡交易?

"funding_instruments": [
  {
    "credit_card": {
      "type": "visa",
      "number": "xxxxxxxxxxxx0331",
      "expire_month": "11",
      "expire_year": "2018",
      "first_name": "Joe",
      "last_name": "Shopper",
      "billing_address": {
        "line1": "52 N Main ST",
        "city": "Johnstown",
        "state": "OH",
        "postal_code": "43210",
        "country_code": "US"
      }
    }
  }
]
4

1 回答 1

1

REST API 似乎需要帐单地址。但是,如果您使用 Payments Pro / PayFlow API,则可以调整欺诈过滤器中的 AVS 和 CVV2 设置,以便随后处理没有地址的信用卡。

于 2013-08-17T10:20:44.073 回答