Archive: Api

 

Posts Tagged ‘Api’


There's no doubt that Magento's core API is a useful tool when used in the right way, but it can also be fiddly as hell and sometimes frustrating. My assignment.www.e-commercewebdesign.co.uk/…/grabbing-products-cross… Grabbing Products Cross-Domain with Magento SOAP API … Possibly Related Posts: Tree Life Design Offers Excellent Opportunity For Small Business Growth Positive Web Design Now [...]



 

I am working with Magento 1.6 and try to call the Soap API V2 to get product-information (attributes and additional attributes). If use soapUI or try to generate a request in java to get information of the product and its additional attributes a new entry gets written to the system log, saying: 2012-01-20T08:33:04+00:00 DEBUG (7): [...]



 

In Magento, a customer can associate an UPS Account # with their account allowing them to ship and pay for their shipments with their personal UPS account number. I’m in need of retrieving that on an order or customer basis via the Magento API (V2). Does anyone know if that is data that can be [...]



 

I’m using the Magento API to get product data for products from a certain category from another domain. I have made the API call etc… The code I’m currently using to get the product data looks like this: $productList = $client->call($session, ‘catalog_category.assignedProducts’, 7); foreach ($productList as $product){ $theProduct = array(); $theProduct['info'] = $client->call($session, ‘catalog_product.info’, $product['sku']); [...]



 

REVISED QUESTION I have revised the original question (as seen below) so that I can mark a part of the problem as answered. So here goes:I have built a tool to import sales orders from customer stores (magento) for integration into our legacy order processing system. I have five stores to import from. One of [...]



 

Alan Storm: Magento Developer Manual: Helper and API Reference Possibly Related Posts: E-Learning, Moodle, Magento, Technical Writing and Training Some custom Blocks to help you show products | Asia Connect Technology JSC coalitiontechnologies.com Magento Social Bookmarking Extension | Magento Social Networking Celigo – Cloud Computing Simplified



 

I was trying to create a new product but some weird problem happened and it simply gave me this error: Invalid data given. Details in error message. Which was generated by $e -> getMessage() from this snippet: try { $result = $proxy -> call($sessionId, $api, $parameters); return $result; } catch (SoapFault $e) { echo ‘<p [...]



 

I am experiencing some performance issues with the Magento API. Basically I use the API to create and update products. It’s integrated with the clients stock system. The first few products take 6 seconds or so. After 10 mins, it takes around 15 seconds per product. It gets exponentially worse until it takes around 10 [...]



 

already found something about this task but these snippets where just SQL Querys, is it possible to get the highest attribute id / highest attributeoption id like, when i create an attribute, its got the attribute_id 11, now i use that tool without having created any attribute with it yet –> just read all available [...]



 

I’m having a lot of issues trying to mimic the demo found on this page at the very bottom: http://www.magentocommerce.com/wiki/doc/webservices-api/api/cart The demo basically tries to show an example of going through the entire checkout process using the API. Creating the cart, creating the guest customer, creating the addresses for that customer, adding products to the [...]