Brochures can be requested by customers through the website. This iVectorConnect call will be used to add the brochure requests to the customer. The request allows the user to request more than one brochure.Â
It also searches to see whether the customer already exists, and if they do uses that customer, if the customer doesn't exist it creates the customer in the system.
The structure of the XML will be:
The structure of the XML will be:
<AddBrochureRequest>
<LoginDetails>
<Login>Login</Login>
<Password>Password</Password>
</LoginDetails>
<Title>Mr</Title>
<FirstName>asd</FirstName>
<LastName>asd</LastName>
<Address1>90 Sugden Road</Address1>
<Address2/>
<TownCity>London</TownCity>
<County/>
<Postcode>SW11 5EE</Postcode>
<Country>United Kingdom</Country>
<Email/>
<EmailSignUp>false</EmailSignUp>
<SelectedBrochures>
<Brochure>
<BrochureID>1</BrochureID>
</Brochure>
</SelectedBrochures>
</AddBrochureRequest>
<AddBrochureResponse>
<ReturnStatus>
<Success>true</Success>
<Exceptions />
</ReturnStatus>
</AddBrochureResponse>