Difference between revisions of "USA Web Service"
Jump to navigation
Jump to search
Line 13: | Line 13: | ||
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. | 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''' | |
− | + | ||
+ | <code>http://signals.thewhiteroom.com/cgi-bin/ws/login</code> | ||
+ | |||
+ | * '''Expected XML''' | ||
+ | <code> | ||
+ | <MemberRequest> | ||
+ | <Email>johnsmith@example.com</Email> | ||
+ | <Password>secret</Password> | ||
+ | </MemberRequest> | ||
+ | </code> | ||
+ | |||
+ | * XML Response | ||
+ | |||
= Shipping Info = | = Shipping Info = |
Revision as of 12:47, 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>secret</Password>
</MemberRequest>
- XML Response