volusion

Volusion API - Export Orders by Date Range

余生颓废 提交于 2019-12-04 05:53:01
问题 On a scheduled basis, I would like to export Volusion orders by a date range: select * from orders o where o.OrderDate >= '7/20/2015' AND o.OrderDate <= '7/23/2015' Is this possible? It appears my URL can only do an equals sign: https://www.XX.net/net/WebService.aspx?Login=shopxperts@yahoo.com&EncryptedPassword=XX&EDI_Name=Generic\Orders&SELECT_Columns=*&WHERE_Column=o.orderdate&WHERE_Value=7/18/2015 10:58:09 AM I looked at the SQL saved query feature. Is there a way to save a query with

How to write join query in Volusion API

感情迁移 提交于 2019-11-28 14:43:26
I have a PHP application which connects to Volusion store and exports data using query string, and the query string in API like following $url="http://www.domain.com/net/WebService.aspx?Login=jusername&EncryptedPassword=7602B3272D929D17B5138382F2AE4F4C6102A12AEB1F476293C16A5F731949B6&EDI_Name=Generic\Customers&SELECT_Columns=CustomerID,LastLogin"; Now I want to fetch data from multiple tables and my query is like SELECT Customers.CustomerID, Customers.FirstName, Customers.LastName, Customers.CompanyName, Customers.EmailAddress, Login_History.LastModified FROM Customers JOIN Login_History ON

How to write join query in Volusion API

|▌冷眼眸甩不掉的悲伤 提交于 2019-11-27 08:48:46
问题 I have a PHP application which connects to Volusion store and exports data using query string, and the query string in API like following $url="http://www.domain.com/net/WebService.aspx?Login=jusername&EncryptedPassword=7602B3272D929D17B5138382F2AE4F4C6102A12AEB1F476293C16A5F731949B6&EDI_Name=Generic\Customers&SELECT_Columns=CustomerID,LastLogin"; Now I want to fetch data from multiple tables and my query is like SELECT Customers.CustomerID, Customers.FirstName, Customers.LastName, Customers