Wazala Online Store Order Forward Manual


You may enter the URL of a script on your website to forward orders made form your Wazala online store to. We also provide an API call VerifyOrder('OrderID') for you to validate orders authenticity.

Example XML

<order>
	<wazala-order-id>14273</wazala-order-id>	
	<buyer-info>	
		<name>alin</name>
		<email>alin@wazala.com</email>
		<phone>0700000000</phone>
		<billing-address>	
		    <street>1234 Demo Drive</street>
		    <apt>Unit A</apt>
		    <city>Los Angeles</city>
		    <state>CA</state>
		    <postal-code>90048</postal-code>
		    <country-code>US</country-code>
		</billing-address>
	</buyer-info>
	<order-summary>
		<purchase-date>2011-04-26 23:42:10</purchase-date>
		<order-no>100044</order-no>
		<status>Hold</status>		
		<shippable>yes/no</shippable>
		<downloadable>yes/no</downloadable>
		<shipping-info>
			<shipping-address>
				<contact-name>user name</contact-name>
				<street>1234 Demo Drive</street>
				<apt>Unit A</apt>
				<city>Los Angeles</city>
				<state>CA</state>
				<postal-code>90048</postal-code>
				<country-code>US</country-code>
			</shipping-address>
			<express-shipping>yes</express-shipping>
			<ship-cost>10.00</ship-cost>			
		</shipping-info>
		<shopping-cart-items>
			<item>
				<item-name>Test product</item-name>
				<item-options></item-options>
				<unit-price>11.00</unit-price>				
				<quantity>1</quantity>
				<item-coupons>
					<coupon>						
						<code>B26Q3T6T6S</code>
						<info>Test product DISCOUNT -  %3</info>
						<discount-value>0.33</discount-value>
					</coupon>
				</item-coupons>
				<url>http://www.wazala.com/widget/download.php?h...</url>
				<total-price>10.67</total-price>
			</item>
		</shopping-cart-items>
		<items-total>10.67</items-total>
		<cart-coupons>
			<coupon>						
				<code>TOTAL</code>
				<info>DISCOUNT -  $5.00</info>
				<discount-value>5.00</discount-value>
			</coupon>
		</cart-coupons>
		<tax-total>1.10</tax-total>		
		<order-total>16.77</order-total>
	</order-summary>
</order>

Node Definition
wazala-order-id Internal order id
transaction-id The transaction ID generated by the payment processor
buyer-info
name The customer's full name.
email The customer's email address.
phone The customer's telephone number.
buyer-info -> billing-address
street The billing street address chosen by the customer.
extended The billing shipping street address chosen by the customer. Example: Apt. 4
city The billing city chosen by the customer.
state The billing state chosen by the customer.
postal-code The billing postal code chosen by the customer.
country-code The billing country code chosen by the customer.
order-summary
purchase-date The date of the purchase. Example: 2010-06-04 12:22:40
order-no Order number
status Current order status. Available values: New, Hold, Shipped, Canceled, Pending, Invalid
shippable Order is shippable: Yes or No
downloadable Order is downloadable: Yes or No
items-total total amount for products
tax-total total amount for taxes
order-total total amount of the order
order-summary -> shipping-info
express-shipping Express shipping is checked: yes or no
ship-cost Total ship cost
order-summary -> shipping-info -> shipping-address
contact-name The shipping full contact name chosen by the customer.
street The shipping street address chosen by the customer.
extended The extended shipping street address chosen by the customer. Example: Apt. 4
city The shipping city chosen by the customer.
state The shipping state chosen by the customer.
postal-code The shipping postal code chosen by the customer.
country-code The shipping country code chosen by the customer.
order-summary -> shopping-cart-items -> item
item-name Product name
item-options Selected product options
unit-price product price
quantity number of products
url download url for digital items
total-price unit-price * quantity - discount values
order-summary -> shopping-cart-items -> item -> item-coupons -> coupon
code Coupon code
info coupon discount description
discount-value total discount for this product
order-summary -> cart-coupons
code Coupon code
info coupon discount description
discount-value total discount value

Back to Wazala Online Store API