<?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 Payments occurring within the same second are being applied to the wrong account in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payments-occurring-within-the-same-second-are-being-applied-to/m-p/82793#M52176</link>
    <description>&lt;P&gt;Hello, I'm a developer on a saas product that allows customers to process payments using authorize.net. We're seeing an issue where we have two separate clients with completely different authorize.net accounts and one is receiving funds that are meant for another. This only occurs when both requests are submitted within the same second of each other. For example...&lt;/P&gt;&lt;P&gt;We made one request for Client A at&amp;nbsp;&lt;SPAN&gt;2022-02-23 10:18:10.360.&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;createTransactionRequest
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema"
	xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;
	&amp;lt;transactionRequest&amp;gt;
		&amp;lt;transactionType&amp;gt;authCaptureTransaction&amp;lt;/transactionType&amp;gt;
		&amp;lt;payment&amp;gt;
			&amp;lt;creditCard&amp;gt;
				&amp;lt;cardNumber&amp;gt;XXXXXXXXXXXXXXX&amp;lt;/cardNumber&amp;gt;
				&amp;lt;expirationDate&amp;gt;XXXXXX&amp;lt;/expirationDate&amp;gt;
				&amp;lt;cardCode&amp;gt;XXXX&amp;lt;/cardCode&amp;gt;
			&amp;lt;/creditCard&amp;gt;
		&amp;lt;/payment&amp;gt;
		&amp;lt;order&amp;gt;
			&amp;lt;description&amp;gt;Paying multiple Invoices&amp;lt;/description&amp;gt;
		&amp;lt;/order&amp;gt;
		&amp;lt;customer&amp;gt;
			&amp;lt;id&amp;gt;11112222&amp;lt;/id&amp;gt;
			&amp;lt;email&amp;gt;EmailAddressHere&amp;lt;/email&amp;gt;
		&amp;lt;/customer&amp;gt;
		&amp;lt;billTo&amp;gt;
			&amp;lt;firstName&amp;gt;John&amp;lt;/firstName&amp;gt;
			&amp;lt;lastName&amp;gt;Doe&amp;lt;/lastName&amp;gt;
			&amp;lt;company /&amp;gt;
			&amp;lt;address&amp;gt;Address&amp;lt;/address&amp;gt;
			&amp;lt;city&amp;gt;City&amp;lt;/city&amp;gt;
			&amp;lt;state&amp;gt;ST&amp;lt;/state&amp;gt;
			&amp;lt;zip&amp;gt;ZIP&amp;lt;/zip&amp;gt;
			&amp;lt;country&amp;gt;CC&amp;lt;/country&amp;gt;
		&amp;lt;/billTo&amp;gt;
		&amp;lt;shipTo xsi:type="customerAddressType"&amp;gt;
			&amp;lt;firstName&amp;gt;John&amp;lt;/firstName&amp;gt;
			&amp;lt;lastName&amp;gt;Doe&amp;lt;/lastName&amp;gt;
			&amp;lt;address&amp;gt;Address&amp;lt;/address&amp;gt;
			&amp;lt;city&amp;gt;City&amp;lt;/city&amp;gt;
			&amp;lt;state&amp;gt;ST&amp;lt;/state&amp;gt;
			&amp;lt;zip&amp;gt;Zip&amp;lt;/zip&amp;gt;
			&amp;lt;country&amp;gt;CC&amp;lt;/country&amp;gt;
		&amp;lt;/shipTo&amp;gt;
		&amp;lt;customerIP&amp;gt;00.000.000.000&amp;lt;/customerIP&amp;gt;
	&amp;lt;/transactionRequest&amp;gt;
&amp;lt;/createTransactionRequest&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;We made a separate request for Client B at&amp;nbsp;2022-02-23 10:18:10.533.&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;createTransactionRequest
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema"
	xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;
	&amp;lt;transactionRequest&amp;gt;
		&amp;lt;transactionType&amp;gt;authCaptureTransaction&amp;lt;/transactionType&amp;gt;
		&amp;lt;payment&amp;gt;
			&amp;lt;creditCard&amp;gt;
				&amp;lt;cardNumber&amp;gt;XXXXXXXXXXXXXXXX&amp;lt;/cardNumber&amp;gt;
				&amp;lt;expirationDate&amp;gt;XXXXXX&amp;lt;/expirationDate&amp;gt;
				&amp;lt;cardCode&amp;gt;XXX&amp;lt;/cardCode&amp;gt;
			&amp;lt;/creditCard&amp;gt;
		&amp;lt;/payment&amp;gt;
		&amp;lt;order&amp;gt;
			&amp;lt;invoiceNumber&amp;gt;999999999&amp;lt;/invoiceNumber&amp;gt;
			&amp;lt;description&amp;gt;Payment submitted by site administrator.&amp;lt;/description&amp;gt;
		&amp;lt;/order&amp;gt;
		&amp;lt;customer&amp;gt;
			&amp;lt;id&amp;gt;33334444&amp;lt;/id&amp;gt;
			&amp;lt;email&amp;gt;DifferentEmailHere&amp;lt;/email&amp;gt;
		&amp;lt;/customer&amp;gt;
		&amp;lt;billTo&amp;gt;
			&amp;lt;firstName&amp;gt;Jane&amp;lt;/firstName&amp;gt;
			&amp;lt;lastName&amp;gt;Smith&amp;lt;/lastName&amp;gt;
			&amp;lt;company&amp;gt;Company Name&amp;lt;/company&amp;gt;
			&amp;lt;address&amp;gt;Address&amp;lt;/address&amp;gt;
			&amp;lt;city&amp;gt;City&amp;lt;/city&amp;gt;
			&amp;lt;state&amp;gt;ST&amp;lt;/state&amp;gt;
			&amp;lt;zip&amp;gt;Zip&amp;lt;/zip&amp;gt;
			&amp;lt;country&amp;gt;CC&amp;lt;/country&amp;gt;
		&amp;lt;/billTo&amp;gt;
		&amp;lt;shipTo xsi:type="customerAddressType"&amp;gt;
			&amp;lt;firstName&amp;gt;Jane&amp;lt;/firstName&amp;gt;
			&amp;lt;lastName&amp;gt;Smith&amp;lt;/lastName&amp;gt;
			&amp;lt;address&amp;gt;Address&amp;lt;/address&amp;gt;
			&amp;lt;city&amp;gt;City&amp;lt;/city&amp;gt;
			&amp;lt;state&amp;gt;ST&amp;lt;/state&amp;gt;
			&amp;lt;zip&amp;gt;Zip&amp;lt;/zip&amp;gt;
			&amp;lt;country&amp;gt;CC&amp;lt;/country&amp;gt;
		&amp;lt;/shipTo&amp;gt;
		&amp;lt;customerIP&amp;gt;11.111.111.111&amp;lt;/customerIP&amp;gt;
	&amp;lt;/transactionRequest&amp;gt;
&amp;lt;/createTransactionRequest&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;The responses we receive don't indicate any problems. There's unique&amp;nbsp;transId and&amp;nbsp;networkTransId fields. The card numbers and types reflect the correct ones for each client, but the wrong client, despite the two clients having unique&amp;nbsp;API Login IDs and&amp;nbsp;Transaction Keys.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 20 May 2022 16:53:36 GMT</pubDate>
    <dc:creator>Jives</dc:creator>
    <dc:date>2022-05-20T16:53:36Z</dc:date>
    <item>
      <title>Payments occurring within the same second are being applied to the wrong account</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payments-occurring-within-the-same-second-are-being-applied-to/m-p/82793#M52176</link>
      <description>&lt;P&gt;Hello, I'm a developer on a saas product that allows customers to process payments using authorize.net. We're seeing an issue where we have two separate clients with completely different authorize.net accounts and one is receiving funds that are meant for another. This only occurs when both requests are submitted within the same second of each other. For example...&lt;/P&gt;&lt;P&gt;We made one request for Client A at&amp;nbsp;&lt;SPAN&gt;2022-02-23 10:18:10.360.&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;createTransactionRequest
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema"
	xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;
	&amp;lt;transactionRequest&amp;gt;
		&amp;lt;transactionType&amp;gt;authCaptureTransaction&amp;lt;/transactionType&amp;gt;
		&amp;lt;payment&amp;gt;
			&amp;lt;creditCard&amp;gt;
				&amp;lt;cardNumber&amp;gt;XXXXXXXXXXXXXXX&amp;lt;/cardNumber&amp;gt;
				&amp;lt;expirationDate&amp;gt;XXXXXX&amp;lt;/expirationDate&amp;gt;
				&amp;lt;cardCode&amp;gt;XXXX&amp;lt;/cardCode&amp;gt;
			&amp;lt;/creditCard&amp;gt;
		&amp;lt;/payment&amp;gt;
		&amp;lt;order&amp;gt;
			&amp;lt;description&amp;gt;Paying multiple Invoices&amp;lt;/description&amp;gt;
		&amp;lt;/order&amp;gt;
		&amp;lt;customer&amp;gt;
			&amp;lt;id&amp;gt;11112222&amp;lt;/id&amp;gt;
			&amp;lt;email&amp;gt;EmailAddressHere&amp;lt;/email&amp;gt;
		&amp;lt;/customer&amp;gt;
		&amp;lt;billTo&amp;gt;
			&amp;lt;firstName&amp;gt;John&amp;lt;/firstName&amp;gt;
			&amp;lt;lastName&amp;gt;Doe&amp;lt;/lastName&amp;gt;
			&amp;lt;company /&amp;gt;
			&amp;lt;address&amp;gt;Address&amp;lt;/address&amp;gt;
			&amp;lt;city&amp;gt;City&amp;lt;/city&amp;gt;
			&amp;lt;state&amp;gt;ST&amp;lt;/state&amp;gt;
			&amp;lt;zip&amp;gt;ZIP&amp;lt;/zip&amp;gt;
			&amp;lt;country&amp;gt;CC&amp;lt;/country&amp;gt;
		&amp;lt;/billTo&amp;gt;
		&amp;lt;shipTo xsi:type="customerAddressType"&amp;gt;
			&amp;lt;firstName&amp;gt;John&amp;lt;/firstName&amp;gt;
			&amp;lt;lastName&amp;gt;Doe&amp;lt;/lastName&amp;gt;
			&amp;lt;address&amp;gt;Address&amp;lt;/address&amp;gt;
			&amp;lt;city&amp;gt;City&amp;lt;/city&amp;gt;
			&amp;lt;state&amp;gt;ST&amp;lt;/state&amp;gt;
			&amp;lt;zip&amp;gt;Zip&amp;lt;/zip&amp;gt;
			&amp;lt;country&amp;gt;CC&amp;lt;/country&amp;gt;
		&amp;lt;/shipTo&amp;gt;
		&amp;lt;customerIP&amp;gt;00.000.000.000&amp;lt;/customerIP&amp;gt;
	&amp;lt;/transactionRequest&amp;gt;
&amp;lt;/createTransactionRequest&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;We made a separate request for Client B at&amp;nbsp;2022-02-23 10:18:10.533.&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;createTransactionRequest
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema"
	xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;
	&amp;lt;transactionRequest&amp;gt;
		&amp;lt;transactionType&amp;gt;authCaptureTransaction&amp;lt;/transactionType&amp;gt;
		&amp;lt;payment&amp;gt;
			&amp;lt;creditCard&amp;gt;
				&amp;lt;cardNumber&amp;gt;XXXXXXXXXXXXXXXX&amp;lt;/cardNumber&amp;gt;
				&amp;lt;expirationDate&amp;gt;XXXXXX&amp;lt;/expirationDate&amp;gt;
				&amp;lt;cardCode&amp;gt;XXX&amp;lt;/cardCode&amp;gt;
			&amp;lt;/creditCard&amp;gt;
		&amp;lt;/payment&amp;gt;
		&amp;lt;order&amp;gt;
			&amp;lt;invoiceNumber&amp;gt;999999999&amp;lt;/invoiceNumber&amp;gt;
			&amp;lt;description&amp;gt;Payment submitted by site administrator.&amp;lt;/description&amp;gt;
		&amp;lt;/order&amp;gt;
		&amp;lt;customer&amp;gt;
			&amp;lt;id&amp;gt;33334444&amp;lt;/id&amp;gt;
			&amp;lt;email&amp;gt;DifferentEmailHere&amp;lt;/email&amp;gt;
		&amp;lt;/customer&amp;gt;
		&amp;lt;billTo&amp;gt;
			&amp;lt;firstName&amp;gt;Jane&amp;lt;/firstName&amp;gt;
			&amp;lt;lastName&amp;gt;Smith&amp;lt;/lastName&amp;gt;
			&amp;lt;company&amp;gt;Company Name&amp;lt;/company&amp;gt;
			&amp;lt;address&amp;gt;Address&amp;lt;/address&amp;gt;
			&amp;lt;city&amp;gt;City&amp;lt;/city&amp;gt;
			&amp;lt;state&amp;gt;ST&amp;lt;/state&amp;gt;
			&amp;lt;zip&amp;gt;Zip&amp;lt;/zip&amp;gt;
			&amp;lt;country&amp;gt;CC&amp;lt;/country&amp;gt;
		&amp;lt;/billTo&amp;gt;
		&amp;lt;shipTo xsi:type="customerAddressType"&amp;gt;
			&amp;lt;firstName&amp;gt;Jane&amp;lt;/firstName&amp;gt;
			&amp;lt;lastName&amp;gt;Smith&amp;lt;/lastName&amp;gt;
			&amp;lt;address&amp;gt;Address&amp;lt;/address&amp;gt;
			&amp;lt;city&amp;gt;City&amp;lt;/city&amp;gt;
			&amp;lt;state&amp;gt;ST&amp;lt;/state&amp;gt;
			&amp;lt;zip&amp;gt;Zip&amp;lt;/zip&amp;gt;
			&amp;lt;country&amp;gt;CC&amp;lt;/country&amp;gt;
		&amp;lt;/shipTo&amp;gt;
		&amp;lt;customerIP&amp;gt;11.111.111.111&amp;lt;/customerIP&amp;gt;
	&amp;lt;/transactionRequest&amp;gt;
&amp;lt;/createTransactionRequest&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;The responses we receive don't indicate any problems. There's unique&amp;nbsp;transId and&amp;nbsp;networkTransId fields. The card numbers and types reflect the correct ones for each client, but the wrong client, despite the two clients having unique&amp;nbsp;API Login IDs and&amp;nbsp;Transaction Keys.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 20 May 2022 16:53:36 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Payments-occurring-within-the-same-second-are-being-applied-to/m-p/82793#M52176</guid>
      <dc:creator>Jives</dc:creator>
      <dc:date>2022-05-20T16:53:36Z</dc:date>
    </item>
  </channel>
</rss>

