<?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: Create Shipping Address in CIM, C# in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-Shipping-Address-in-CIM-C/m-p/3202#M2906</link>
    <description>&lt;P&gt;You can either add it when you create the customer profile or call the createcustomershippingaddress methods.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;public static long CreateCustomerProfile()&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;CustomerProfileWS.CustomerProfileType m_new_cust = new CustomerProfileWS.CustomerProfileType();&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.email = "fake@example.com";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.description = "Example customer " + DateTime.Now.ToShortTimeString();&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.merchantCustomerId = "1001";&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList = new CustomerProfileAPI.CustomerProfileWS.CustomerAddressType[1];&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0] = new CustomerProfileAPI.CustomerProfileWS.CustomerAddressType();&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0].firstName = "Bob";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0].lastName = "Smith";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0].company = "ABC";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0].address = "123 Monday way";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0].city = "Chicago";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0].state = "IL";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0].zip = "60606";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0].country = "us";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0].phoneNumber = "4255555555";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0].faxNumber = "4255555555";&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;CustomerProfileWS.CreateCustomerProfileResponseType response = SoapAPIUtilities.Service.CreateCustomerProfile(SoapAPIUtilities.MerchantAuthentication, m_new_cust, CustomerProfileAPI.CustomerProfileWS.ValidationModeEnum.none);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;return response.customerProfileId;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;public static long CreateCustomerShippingAddress(long profile_id)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;CustomerProfileWS.CustomerAddressType new_shipping_profile = new CustomerProfileAPI.CustomerProfileWS.CustomerAddressType();&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;new_shipping_profile.firstName = "Bob";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;new_shipping_profile.lastName = "Smith";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;new_shipping_profile.company = "Authorize.net";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;new_shipping_profile.address = "123 Weekend way";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;new_shipping_profile.city = "Chicago";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;new_shipping_profile.state = "IL";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;new_shipping_profile.zip = "60606";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;new_shipping_profile.country = "us";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;new_shipping_profile.phoneNumber = "4255555555";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;new_shipping_profile.faxNumber = "4255555555";&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;CustomerProfileWS.CreateCustomerShippingAddressResponseType response = SoapAPIUtilities.Service.CreateCustomerShippingAddress(SoapAPIUtilities.MerchantAuthentication, profile_id, new_shipping_profile);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;return response.customerAddressId;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;/P&gt;</description>
    <pubDate>Mon, 17 May 2010 11:43:30 GMT</pubDate>
    <dc:creator>RaynorC1emen7</dc:creator>
    <dc:date>2010-05-17T11:43:30Z</dc:date>
    <item>
      <title>Create Shipping Address in CIM, C#</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-Shipping-Address-in-CIM-C/m-p/3200#M2904</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to create a new customer profile, which includes the customer's shipping address. Do you have code that I can use? I can create the profile and add the billing info, however, I don't know how to add the shipping info:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt; public static long CreateCustomerPaymentProfile(long profile_id){
         CustomerProfileWS.CustomerPaymentProfileType new_payment_profile = new CustomerProfileWS.CustomerPaymentProfileType();
         CustomerProfileWS.PaymentType new_payment = new CustomerProfileWS.PaymentType();
         
         //BankAccountType new_bank = new BankAccountType();
         //new_bank.accountNumber = "4111111";

         CustomerProfileWS.CreditCardType new_card = new CustomerProfileWS.CreditCardType();
         new_card.cardNumber = "4111111111111111";
         new_card.expirationDate = "2010-10";         
         new_payment.Item = new_card;
         //new_payment.Item = new_bank;
         new_payment_profile.billTo = new CustomerAddressType();
         new_payment_profile.billTo.address = "1155 Maple St.";
         new_payment_profile.payment = new_payment;
         //ArrayOfCustomerPaymentProfileType pay_list = new ArrayOfCustomerPaymentProfileType();
         //pay_list.getCustomerPaymentProfileType().add(new_payment_profile);
      
         CustomerProfileWS.CreateCustomerPaymentProfileResponseType response = SoapAPIUtilities.Service.CreateCustomerPaymentProfile(SoapAPIUtilities.MerchantAuthentication, profile_id, new_payment_profile, CustomerProfileWS.ValidationModeEnum.testMode);

         long out_id = 0;
         Console.WriteLine("Response Code: " + response.resultCode);
         for(int i = 0; i &amp;lt; response.messages.Length; i++){
            Console.WriteLine("Message: " + response.messages[i].text);
         }

         out_id = response.customerPaymentProfileId;

         return out_id;
      }&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 May 2010 00:57:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-Shipping-Address-in-CIM-C/m-p/3200#M2904</guid>
      <dc:creator>joe_a84</dc:creator>
      <dc:date>2010-05-17T00:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: Create Shipping Address in CIM, C#</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-Shipping-Address-in-CIM-C/m-p/3202#M2906</link>
      <description>&lt;P&gt;You can either add it when you create the customer profile or call the createcustomershippingaddress methods.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;public static long CreateCustomerProfile()&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;CustomerProfileWS.CustomerProfileType m_new_cust = new CustomerProfileWS.CustomerProfileType();&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.email = "fake@example.com";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.description = "Example customer " + DateTime.Now.ToShortTimeString();&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.merchantCustomerId = "1001";&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList = new CustomerProfileAPI.CustomerProfileWS.CustomerAddressType[1];&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0] = new CustomerProfileAPI.CustomerProfileWS.CustomerAddressType();&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0].firstName = "Bob";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0].lastName = "Smith";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0].company = "ABC";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0].address = "123 Monday way";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0].city = "Chicago";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0].state = "IL";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0].zip = "60606";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0].country = "us";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0].phoneNumber = "4255555555";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_new_cust.shipToList[0].faxNumber = "4255555555";&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;CustomerProfileWS.CreateCustomerProfileResponseType response = SoapAPIUtilities.Service.CreateCustomerProfile(SoapAPIUtilities.MerchantAuthentication, m_new_cust, CustomerProfileAPI.CustomerProfileWS.ValidationModeEnum.none);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;return response.customerProfileId;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;public static long CreateCustomerShippingAddress(long profile_id)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;CustomerProfileWS.CustomerAddressType new_shipping_profile = new CustomerProfileAPI.CustomerProfileWS.CustomerAddressType();&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;new_shipping_profile.firstName = "Bob";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;new_shipping_profile.lastName = "Smith";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;new_shipping_profile.company = "Authorize.net";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;new_shipping_profile.address = "123 Weekend way";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;new_shipping_profile.city = "Chicago";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;new_shipping_profile.state = "IL";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;new_shipping_profile.zip = "60606";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;new_shipping_profile.country = "us";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;new_shipping_profile.phoneNumber = "4255555555";&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;new_shipping_profile.faxNumber = "4255555555";&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;CustomerProfileWS.CreateCustomerShippingAddressResponseType response = SoapAPIUtilities.Service.CreateCustomerShippingAddress(SoapAPIUtilities.MerchantAuthentication, profile_id, new_shipping_profile);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;return response.customerAddressId;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;/P&gt;</description>
      <pubDate>Mon, 17 May 2010 11:43:30 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-Shipping-Address-in-CIM-C/m-p/3202#M2906</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2010-05-17T11:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Create Shipping Address in CIM, C#</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-Shipping-Address-in-CIM-C/m-p/34608#M19049</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm &amp;nbsp;using cim approach and my test account in live mode and I'm passing shipping address id while authorizing an order but didn't get shipping address in email notification and transaction details,&lt;/P&gt;&lt;P&gt;Shipping address &amp;nbsp;is showing only on CIM -&amp;gt;customer profile area.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So suggest me steps through that I can see &amp;nbsp;shipping address in shipping information area. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="im"&gt;========= SECURITY STATEMENT ==========&lt;BR /&gt;It is not recommended that you ship product(s) or otherwise grant services relying solely upon this e-mail receipt.&lt;BR /&gt;&lt;BR /&gt;========= GENERAL INFORMATION =========&lt;BR /&gt;&lt;BR /&gt;Merchant : manish kumar (402325)&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;Date/Time : 8-Jun-2013 6:35:37 PDT&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;========= ORDER INFORMATION =========&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Invoice : O13151_USAAL_1CD8F3&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Description :&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Amount : 300.00 (USD)&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class="im"&gt;Payment Method : Visa&lt;BR /&gt;Type : Authorization Only&lt;BR /&gt;&lt;BR /&gt;============== RESULTS ==============&lt;BR /&gt;Response : This transaction has been approved.&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;Authorization Code : CY36IU&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Transaction ID :&amp;nbsp;&lt;/SPAN&gt;&lt;A target="_blank" href="tel:2194226608"&gt;2194226608&lt;/A&gt;&lt;/P&gt;&lt;DIV class="im"&gt;Address Verification : Street Address: Match -- First 5 Digits of Zip: Match&lt;BR /&gt;&lt;BR /&gt;==== CUSTOMER BILLING INFORMATION ===&lt;BR /&gt;Customer ID :&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;First Name : Test&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Last Name : Manuf&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Company : TDC&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Address : street1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;City : alabama&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;State/Province : AL&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Zip/Postal Code : 32442&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Country : US&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Phone :&amp;nbsp;&lt;/SPAN&gt;&lt;A target="_blank" href="tel:8888888888"&gt;8888888888&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;Fax :&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;E-Mail :&amp;nbsp;&lt;/SPAN&gt;&lt;A target="_blank" href="mailto:manuf1@quivers.com"&gt;manuf1@quivers.com&lt;/A&gt;&lt;/P&gt;&lt;DIV class="yj6qo ajU"&gt;&lt;DIV class="ajR"&gt;&lt;IMG border="0" src="https://mail.google.com/mail/u/0/images/cleardot.gif" /&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="adL"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="HOEnZb adL"&gt;&lt;DIV class="adm"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="im"&gt;&lt;BR /&gt;==== CUSTOMER SHIPPING INFORMATION ===&lt;BR /&gt;First Name :&lt;BR /&gt;Last Name :&lt;BR /&gt;Company :&lt;BR /&gt;Address :&lt;BR /&gt;City :&lt;BR /&gt;State/Province :&lt;BR /&gt;Zip/Postal Code :&lt;BR /&gt;Country :&lt;BR /&gt;&lt;BR /&gt;======= ADDITIONAL INFORMATION ======&lt;BR /&gt;Tax :&lt;BR /&gt;Duty :&lt;BR /&gt;Freight :&lt;BR /&gt;Tax Exempt :&lt;BR /&gt;PO Number :&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 11 Jun 2013 17:50:52 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-Shipping-Address-in-CIM-C/m-p/34608#M19049</guid>
      <dc:creator>nitesh786</dc:creator>
      <dc:date>2013-06-11T17:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: Create Shipping Address in CIM, C#</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-Shipping-Address-in-CIM-C/m-p/83148#M52429</link>
      <description>&lt;P data-unlink="true"&gt;That method needs to be extended to include the "customerShippingAddressId" as the CIM documentation has it. However, the ID of the shipping address saved to CIM is not saved on the Spree side, just the profile ID and payment profile ID. Would probably need to save a "gateway_shipping_address_id" on some model like Spree::Creditcard has.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jul 2022 05:29:37 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-Shipping-Address-in-CIM-C/m-p/83148#M52429</guid>
      <dc:creator>Rhys69</dc:creator>
      <dc:date>2022-07-26T05:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: Create Shipping Address in CIM, C#</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-Shipping-Address-in-CIM-C/m-p/89842#M56605</link>
      <description>&lt;P&gt;Well here is the code:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;class CustomerProfile:&lt;BR /&gt;def __init__(self, first_name, last_name, email, phone_number, shipping_address):&lt;BR /&gt;self.first_name = first_name&lt;BR /&gt;self.last_name = last_name&lt;BR /&gt;self.email = email&lt;BR /&gt;self.phone_number = phone_number&lt;BR /&gt;self.shipping_address = shipping_address&lt;/P&gt;&lt;P&gt;def display_profile(self):&lt;BR /&gt;return {&lt;BR /&gt;"First Name": self.first_name,&lt;BR /&gt;"Last Name": self.last_name,&lt;BR /&gt;"Email": self.email,&lt;BR /&gt;"Phone Number": self.phone_number,&lt;BR /&gt;"Shipping Address": self.shipping_address&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;class ShippingAddress:&lt;BR /&gt;def __init__(self, street, city, state, postal_code, country):&lt;BR /&gt;self.street = street&lt;BR /&gt;self.city = city&lt;BR /&gt;self.state = state&lt;BR /&gt;self.postal_code = postal_code&lt;BR /&gt;self.country = country&lt;/P&gt;&lt;P&gt;def __str__(self):&lt;BR /&gt;return f"{self.street}, {self.city}, {self.state}, {self.postal_code}, {self.country}"&lt;/P&gt;&lt;P&gt;# Example usage&lt;BR /&gt;shipping_address = ShippingAddress(&lt;BR /&gt;street="123 Main St",&lt;BR /&gt;city="Springfield",&lt;BR /&gt;state="IL",&lt;BR /&gt;postal_code="62701",&lt;BR /&gt;country="USA"&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;customer_profile = CustomerProfile(&lt;BR /&gt;first_name="John",&lt;BR /&gt;last_name="Doe",&lt;BR /&gt;email="johndoe@example.com",&lt;BR /&gt;phone_number="123-456-7890",&lt;BR /&gt;shipping_address=str(shipping_address)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;# Display the customer profile&lt;BR /&gt;print(customer_profile.display_profile())&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;This code defines two classes: CustomerProfile and ShippingAddress. The CustomerProfile class stores information about the customer&lt;A href="https://beachbuggyracingapk.net/" target="_self"&gt;,&lt;/A&gt; including their shipping address, while the ShippingAddress class contains the details of the shipping address. The example usage demonstrates how to create an instance of a customer profile and display its details. You can modify the structure as needed for integration with databases or APIs.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 05 Aug 2024 08:03:28 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-Shipping-Address-in-CIM-C/m-p/89842#M56605</guid>
      <dc:creator>bajiaqsa0</dc:creator>
      <dc:date>2024-08-05T08:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: Create Shipping Address in CIM, C#</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-Shipping-Address-in-CIM-C/m-p/94665#M58552</link>
      <description>&lt;P data-unlink="true"&gt;3PattiCrown is my go-to platform for smooth, fair, and enjoyable Teen Patti gameplay. I love sharing tips and updates that help players enjoy a safer and more reliable experience every time they play.&lt;BR /&gt;Explore more: https://3patticrown.me/&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Dec 2025 04:59:17 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-Shipping-Address-in-CIM-C/m-p/94665#M58552</guid>
      <dc:creator>3patticrown</dc:creator>
      <dc:date>2025-12-06T04:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: Create Shipping Address in CIM, C#</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-Shipping-Address-in-CIM-C/m-p/94681#M58563</link>
      <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P data-unlink="true"&gt;CodingRoot offers step-by-step coding tutorials, tech guides, and programming tips for learners at every level. Enhance your skills with comprehensive coding resources&amp;nbsp;.https://codingroot.com/&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Mon, 08 Dec 2025 09:02:25 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Create-Shipping-Address-in-CIM-C/m-p/94681#M58563</guid>
      <dc:creator>codingrooot</dc:creator>
      <dc:date>2025-12-08T09:02:25Z</dc:date>
    </item>
  </channel>
</rss>

