Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 2 of 2

Thread: WSI Address Update

  1. #1
    mohanrh is offline Member
    Join Date
    Jul 2009
    Posts
    78

    Default WSI Address Update

    How to Add/update Address information for a customer using WSI? The document provides information to add a new customer and update customer information. but no information regarding updating Address.


    Any information is greatly appreciated.

    Regards
    Mohan

  2. #2
    AspDotNetStorefront Staff - Scott's Avatar
    AspDotNetStorefront Staff - Scott is offline Administrator
    Join Date
    Mar 2007
    Location
    Ashland, OR
    Posts
    2,390

    Default

    Just look at the WSI master doc reference here:

    Code:
    <Customer Action="Add|Update|Delete|Nuke|Lookup" GUID="uniqueidentifier" ID="integer" EMail="string">
    ....
    <Addresses AutoCleanup="true|false, make sure you know what you are doing if you explicitly set this flag, as recurring orders could be adversly affected!!!!">
    <Address Action="Add|Update|Delete|Nuke|Lookup" GUID="uniqueidentifier" ID="integer">
    <NickName>string</NickName>
    <FirstName>string</FirstName>
    <LastName>string</LastName>
    <Company>string</Company>
    <Address1>string</Address1>
    <Address2>string</Address2>
    <Suite>string</Suite>
    <City>string</City>
    <State>string</State>
    <Zip>string</Zip>
    <Country>string</Country>
    <ResidenceType>integer</ResidenceType>
    <Phone>string</Phone>
    <Email>string</Email>
    <ExtensionData>string</ExtensionData>
    </Address>
    <Address Action="Add|Update|Delete|Nuke|Lookup" GUID="uniqueidentifier" ID="integer">
    <NickName>string</NickName>
    <FirstName>string</FirstName>
    <LastName>string</LastName>
    <Company>string</Company>
    <Address1>string</Address1>
    <Address2>string</Address2>
    <Suite>string</Suite>
    <City>string</City>
    <State>string</State>
    <Zip>string</Zip>
    <Country>string</Country>
    <ResidenceType>integer</ResidenceType>
    <Phone>string</Phone>
    <Email>string</Email>
    <ExtensionData>string</ExtensionData>
    </Address>
    <Address Action="Add|Update|Delete|Nuke|Lookup" GUID="uniqueidentifier" ID="integer">
    <NickName>string</NickName>
    <FirstName>string</FirstName>
    <LastName>string</LastName>
    <Company>string</Company>
    <Address1>string</Address1>
    <Address2>string</Address2>
    <Suite>string</Suite>
    <City>string</City>
    <State>string</State>
    <Zip>string</Zip>
    <Country>string</Country>
    <ResidenceType>integer</ResidenceType>
    <Phone>string</Phone>
    <Email>string</Email>
    <ExtensionData>string</ExtensionData>
    </Address>
    </Addresses>
    </Customer>