Difference between revisions of "USA Web Service"
Line 115: | Line 115: | ||
= Order Status = | = Order Status = | ||
+ | |||
+ | -not complete- |
Revision as of 14:30, 20 January 2012
Contents
Development Server
Requests are RESTful URL calls combined with XML sent as raw Standard Input (non-urlencoded POST Requests). To reach the Web Service, use this URL:
http://signals.thewhiteroom.com/cgi-bin/ws
The URL must be combined with a command such as login, shipping, tax, or checkout. So a full request will look like one of these:
- http://signals.thewhiteroom.com/cgi-bin/ws/login
- http://signals.thewhiteroom.com/cgi-bin/ws/shipping
- http://signals.thewhiteroom.com/cgi-bin/ws/tax
- http://signals.thewhiteroom.com/cgi-bin/ws/checkout
User Login
Allow access to membership database so mobile app can authenticate existing accounts. Calls will be made directly to MySQL database to authenticate user login. Response will be name, address, phone, etc of customer table.
Here is an example of how to make this call:
- RESTful Request
http://signals.thewhiteroom.com/cgi-bin/ws/login
- Expected XML
<MemberRequest>
<Email>johnsmith@example.com</Email>
<Password>12345</Password>
</MemberRequest>
- XML Response
<?xml version="1.0" encoding="utf-8" ?>
<MemberResponse>
<MemberID>5</MemberID>
<Addresses>
<Address type="billing">
<Email>johnsmith@example.com</Email>
<FirstName>John</FirstName>
<LastName>Smith</LastName>
<Street1>72 Cascade Dr</Street1>
<Street2>Ste 2</Street2>
<City>Rochester</City>
<State>NY</State>
<Zip>14614</Zip>
<DayPhone>585-232-5670</DayPhone>
<EveningPhone></EveningPhone>
</Address>
</Addresses>
</MemberResponse>
Shipping Info
Allow access to Hazel's shipping cost calculator (a custom Hazel template). Web service will allow for remotely calling Hazel with given products and address information with filtered response of shipping options and costs. This is specific to the customer. Currently, only the products themselves are used in the calculation (not the address).
- RESTful Request
http://signals.thewhiteroom.com/cgi-bin/ws/shipping
- Expected XML
<ShippingRequest>
<Zip>80007</Zip>
<ProductIDs>
<ProductID qty="1">HK6614</ProductID>
<ProductID qty="3">HJ2722</ProductID>
</ProductIDs>
</ShippingRequest>
- XML Response
<?xml version="1.0" encoding="utf-8" ?>
<ShippingResponse>
<ShippingCost>
<Method type="Standard">11.99</Method>
<Method type="Rush (Continental US Only)">20.98</Method>
<Method type="2-Day (Continental US Only)">24.98</Method>
<Method type="Canada">24.94</Method>
</ShippingCost>
</ShippingResponse>
Tax Calculator
Only the state is used to calculate tax (on the store used on the devel site). We may need to expand this in a later revision. Other options can be sent, but only <State> is read from the Tax Request.
- RESTful Request
http://signals.thewhiteroom.com/cgi-bin/ws/tax
- Expected XML
<TaxRequest>
<State>OH</State>
<Zip>45431</Zip>
<ProductIDs>
<ProductID qty="1">7326</ProductID>
<ProductID qty="1">15283</ProductID>
</ProductIDs>
<PromotionCode>CODE123</PromotionCode>
</TaxRequest>
- XML Response
<?xml version="1.0" encoding="utf-8" ?>
<TaxResponse>
<Tax>6.50</Tax>
</TaxResponse>
Checkout
Order Status
-not complete-