<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How should I pass the billing address in transaction request for AVS verification in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-should-I-pass-the-billing-address-in-transaction-request-for/m-p/75040#M46732</link>
    <description>&lt;P&gt;For most merchants, the request for AVS verification on a transaction is automatically submitted via the payment gateway/processor alongside the payment authorization request. The request pings the issuing bank with the billing address information used in the order, and the service returns a code that corresponds to how well the address entered matches up with the address in the issuing bank’s file.&lt;/P&gt;</description>
    <pubDate>Tue, 16 Feb 2021 05:24:45 GMT</pubDate>
    <dc:creator>mason</dc:creator>
    <dc:date>2021-02-16T05:24:45Z</dc:date>
    <item>
      <title>How should I pass the billing address in transaction request for AVS verification</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-should-I-pass-the-billing-address-in-transaction-request-for/m-p/74941#M46653</link>
      <description>&lt;P&gt;Hey guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For ChargeFromCustomerPaymentProfile, how should I pass the billing address in transaction request? I have enabled the AVS and CVV at account management, but I didn't find a place to pass the builling address along transaction request.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please let me know how to get this AVS work?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bing&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2021 20:04:07 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-should-I-pass-the-billing-address-in-transaction-request-for/m-p/74941#M46653</guid>
      <dc:creator>bing</dc:creator>
      <dc:date>2021-02-04T20:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: How should I pass the billing address in transaction request for AVS verification</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-should-I-pass-the-billing-address-in-transaction-request-for/m-p/75022#M46719</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Charging a customer payment profile does not allow or require a billing address to be sent because this information should already be stored in the particular customerPaymentProfile.&lt;/P&gt;&lt;PRE&gt;{
    "createTransactionRequest": {
        "merchantAuthentication": {
            "name": "XXXXXXXX",
            "transactionKey": "XXXXXXXX"
        },
        "refId": "123456",
        "transactionRequest": {
            "transactionType": "authCaptureTransaction",
            "amount": "45",
             &lt;STRONG&gt; "profile": {
    		  	"customerProfileId": "40338125",
    		  	"paymentProfile": { "paymentProfileId": "1000177237" }
  			},&lt;/STRONG&gt;
            "lineItems": {
                "lineItem": {
                    "itemId": "1",
                    "name": "vase",
                    "description": "Cannes logo",
                    "quantity": "18",
                    "unitPrice": "45.00"
                }
            },
			"processingOptions": {
            "isSubsequentAuth": "true"
			},
			"subsequentAuthInformation": {
	             "originalNetworkTransId": "123456789123456",
	             "originalAuthAmount": "45.00",
	             "reason": "resubmission"
             
            },
			"authorizationIndicatorType": {
            "authorizationIndicator": "final"
            }
        }
    }
}&lt;/PRE&gt;&lt;P&gt;Which returns:&lt;/P&gt;&lt;PRE&gt;{
    "transactionResponse": {
        "responseCode": "1",
        "authCode": "4JYKA2",
    &lt;STRONG&gt;    "avsResultCode": "Y",&lt;/STRONG&gt;
        "cvvResultCode": "P",
        "cavvResultCode": "2",
        "transId": "2157786076",
        "refTransID": "",
        "transHash": "",
        "testRequest": "0",
        "accountNumber": "XXXX2222",
        "accountType": "Visa",
        "messages": [
            {
                "code": "1",
                "description": "This transaction has been approved."
            }
        ],
        "transHashSha2": "",
        "profile": {
            "customerProfileId": "40338125",
            "customerPaymentProfileId": "1000177237"
        },
        "SupplementalDataQualificationIndicator": 0,
        "networkTransId": "6PUPU4XXWSO7CCQL0YJNYY7"
    },
    "refId": "123456",
    "messages": {
        "resultCode": "Ok",
        "message": [
            {
                "code": "I00001",
                "text": "Successful."
            }
        ]
    }
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To update a customerPaymentProfile:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{
    "updateCustomerPaymentProfileRequest": {
        "merchantAuthentication": {
            "name": "XXXXXXXX",
            "transactionKey": "XXXXXXXX"
        },
        "customerProfileId": "10000",
        "paymentProfile": {
            "billTo": {
                "firstName": "John",
                "lastName": "Doe",
                "company": "",
                "address": "123 Main St.",
                "city": "Bellevue",
                "state": "WA",
                "zip": "98004",
                "country": "USA",
                "phoneNumber": "000-000-0000",
                "faxNumber": ""
            },
            "payment": {
                "creditCard": {
                    "cardNumber": "4111111111111111",
                    "expirationDate": "2026-01"
                }
            },
            "defaultPaymentProfile": false,
            "customerPaymentProfileId": "20000"
        },
        "validationMode": "liveMode"
    }
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 13 Feb 2021 16:01:50 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-should-I-pass-the-billing-address-in-transaction-request-for/m-p/75022#M46719</guid>
      <dc:creator>NexusSoftware</dc:creator>
      <dc:date>2021-02-13T16:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: How should I pass the billing address in transaction request for AVS verification</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-should-I-pass-the-billing-address-in-transaction-request-for/m-p/75040#M46732</link>
      <description>&lt;P&gt;For most merchants, the request for AVS verification on a transaction is automatically submitted via the payment gateway/processor alongside the payment authorization request. The request pings the issuing bank with the billing address information used in the order, and the service returns a code that corresponds to how well the address entered matches up with the address in the issuing bank’s file.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2021 05:24:45 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-should-I-pass-the-billing-address-in-transaction-request-for/m-p/75040#M46732</guid>
      <dc:creator>mason</dc:creator>
      <dc:date>2021-02-16T05:24:45Z</dc:date>
    </item>
  </channel>
</rss>

