<?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 create Refund a transaction c# in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-create-Refund-a-transaction-c/m-p/45433#M23007</link>
    <description>&lt;P&gt;so you are using the SDKs, they included test&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://github.com/AuthorizeNet/sdk-dotnet/blob/6a03be7ad593519936863e35b430be3166c1ff14/AuthorizeNETtest/GatewayTest.cs"&gt;https://github.com/AuthorizeNet/sdk-dotnet/blob/6a03be7ad593519936863e35b430be3166c1ff14/AuthorizeNETtest/GatewayTest.cs&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 17 Jul 2014 12:14:09 GMT</pubDate>
    <dc:creator>RaynorC1emen7</dc:creator>
    <dc:date>2014-07-17T12:14:09Z</dc:date>
    <item>
      <title>How create Refund a transaction c#</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-create-Refund-a-transaction-c/m-p/45427#M23004</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to integrate refunds in my system with Authorize. This is my first time working with this API and I don't know how to do these implementations.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have looked in the Authorize's documentation there is a method 'createTransactionRequest'. I'd just like a example to begin.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance for your help.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jul 2014 11:03:39 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-create-Refund-a-transaction-c/m-p/45427#M23004</guid>
      <dc:creator>Jotch</dc:creator>
      <dc:date>2014-07-17T11:03:39Z</dc:date>
    </item>
    <item>
      <title>Re: How create Refund a transaction c#</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-create-Refund-a-transaction-c/m-p/45429#M23005</link>
      <description>&lt;P&gt;&lt;A target="_blank" href="http://developer.authorize.net/downloads/samplecode/"&gt;http://developer.authorize.net/downloads/samplecode/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;just look at one the use xml. like the C# cim xml&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jul 2014 11:13:15 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-create-Refund-a-transaction-c/m-p/45429#M23005</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-07-17T11:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: How create Refund a transaction c#</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-create-Refund-a-transaction-c/m-p/45431#M23006</link>
      <description>&lt;P&gt;Hi Raynor, Thanks fro your help. I am just trying to make something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;using System;&lt;BR /&gt;using PerksBase;&lt;BR /&gt;using AuthorizeNet;&lt;BR /&gt;using System.Configuration;&lt;BR /&gt;using System.Collections.Specialized;&lt;BR /&gt;using AuthorizeNet.APICore;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IGateway OpenGateway()&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;//we used the form builder so we can now just load it up&lt;/P&gt;&lt;P&gt;//using the form reader&lt;/P&gt;&lt;P&gt;var login = ConfigurationManager.AppSettings["ApiLogin"];&lt;/P&gt;&lt;P&gt;var transactionKey = ConfigurationManager.AppSettings["TransactionKey"];&lt;/P&gt;&lt;P&gt;//this is set to test mode - change as needed.&lt;/P&gt;&lt;P&gt;var gate = new Gateway(login, transactionKey, true);&lt;/P&gt;&lt;P&gt;return gate;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;protected void btnSubmit_Click(object sender, EventArgs e)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;var gate = OpenGateway();&lt;/P&gt;&lt;P&gt;createTransactionRequest tr = new createTransactionRequest();&lt;/P&gt;&lt;P&gt;........&lt;/P&gt;&lt;P&gt;........&lt;/P&gt;&lt;P&gt;I don't know if you can help me about the next steps.&lt;/P&gt;&lt;P&gt;Need I saved the customer's details in my authorize's account?&lt;/P&gt;&lt;P&gt;Can I make this transaction directly without saving customer's details?&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you again for your help and apologies for my ignorance with this.&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jul 2014 11:57:52 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-create-Refund-a-transaction-c/m-p/45431#M23006</guid>
      <dc:creator>Jotch</dc:creator>
      <dc:date>2014-07-17T11:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: How create Refund a transaction c#</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-create-Refund-a-transaction-c/m-p/45433#M23007</link>
      <description>&lt;P&gt;so you are using the SDKs, they included test&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://github.com/AuthorizeNet/sdk-dotnet/blob/6a03be7ad593519936863e35b430be3166c1ff14/AuthorizeNETtest/GatewayTest.cs"&gt;https://github.com/AuthorizeNet/sdk-dotnet/blob/6a03be7ad593519936863e35b430be3166c1ff14/AuthorizeNETtest/GatewayTest.cs&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jul 2014 12:14:09 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-create-Refund-a-transaction-c/m-p/45433#M23007</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-07-17T12:14:09Z</dc:date>
    </item>
  </channel>
</rss>

