我们正在使用xml集成来授权.net cim
对于我们软件的其他支付网关集成,要更新卡号或计费地址,用户只需删除存储的令牌并发送新的授权或捕获事务即可。然后生成一个新的令牌。
似乎授权.net基于卡号与现有客户配置文件匹配,并返回与以前相同的令牌号
如果我们想在不更改卡号的情况下更新帐单地址,则新的计费地址不会通过我们的常规电话保存到客户资料中。然后,AVS设置可以防止新事务通过。
在不更改其他信息的情况下更新帐单地址时,是否应该有一个特定的调用?
您将使用updateCustomerPaymentProfileRequest
API端点更新付款资料:
{
"updateCustomerPaymentProfileRequest":{
"merchantAuthentication":{
"name":"",
"transactionKey":""
},
"customerProfileId":"12345678",
"paymentProfile":{
"billTo":{
"firstName":"John",
"lastName":"Doe",
"company":"",
"address":"123 Main St.",
"city":"Bellevue",
"state":"WA",
"zip":"98004",
"country":"USA",
"phoneNumber":"800-555-1234",
"faxNumber":"800-555-1234"
},
"customerPaymentProfileId":"2345678"
}
}
}