Receiving XML Responses
A successful SOAP request returns an XML message with Profile and EventResponse elements.
<?xml version="1.0" encoding="utf-8"?>
<CyberStoreConnect>
<Profile>
<FirstName><![CDATA[Susan]]></FirstName>
<LastName><![CDATA[Brown]]></LastName>
<FullName><![CDATA[Susan Brown]]></FullName>
<Username><![CDATA[sbrown@bikesblades.com]]></Username>
<EmailAddress><![CDATA[sbrown@bikesblades.com]]></EmailAddress>
<CustomerClass><![CDATA[Wholesaler]]></CustomerClass>
<Customer><![CDATA[000002]]></Customer>
<CustomerName><![CDATA[Bikes & Blades - North]]></CustomerName>
<ViewList><![CDATA[Wholesaler View]]></ViewList>
</Profile>
<EventResponse>
<Module>API</Module>
<Severity>0</Severity>
<Number>000</Number>
<Message>Success!</Message>
</EventResponse>
</CyberStoreConnect>
The Profile element contains user and customer information. EventResponse contains the operation module, severity, response number, and response message.