php - Volusion API generic product export, product image missing -


i using vollusion api product information, using below url export data.

http://www.example.com/net/webservice.aspx?login=mylogin&encryptedpassword=mypaasword&edi_name=generic\products&select_columns=*,pe.photourl_large,pe.photourl_small,pe.photourl_large.

this url exports other product information xml file, not product image.

plzzz if 1 know it.

the reason why there no image data returned because not have url data inserted photourl_small and/or photourl_large field in admin area of store products. photourl_small and/or photourl_large fields populated data in these fields. there no built in volusion method have image url's appear within xml output admin generated api call.

there way return image url in xml output requires different api approach , has nothing built in volusion api admin page, of beyond scope of question @ hand.

edit

why not run simple sql query admin section? home > inventory > import / export

assuming "2t" image size. change if want smaller or larger size.

select     products_joined.productcode,     'config_fullstoreurlconfig_productphotosfolder/' + replace(products_joined.productcode,'/','-fslash-') + '-2t.jpg' image_url     products_joined 

Comments

Popular posts from this blog

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

javascript - How to name a jQuery function to make a browser's back button work? -