Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Magento XML-RPC api. I haven't found how to get the current store country or currency used for the products. Is it possible to get the currency information through Magento XML-RPC api.

Any link to documentation is very helpful thank you.

share|improve this question

2 Answers

Here you go:

$storeID = <whatever your store id is>;

Mage::app()->getStore($storeID)->getCurrentCurrencyCode();
share|improve this answer
Thanks for the quick response. Unfortunately I can't do it. Consider that I'm a third party application developer. I just have permissions to access Magento store through Magento XML-RPC api. And I'm using Java for XML-RPC requests. What I'm trying to do is get current currency code through one of the API calls. – amadamala Jul 18 '12 at 21:56
I am facing the same problem..please someone give an example to call a method like getting all the sales order list in java through xmlrpc – Haresh Chaudhary Jul 19 '12 at 12:40

I could find it that fast, maybe you can find it on here; https://www.x.com/devzone/articles/magento-part-9-understanding-magento-core-api.

You can't call to the current store (via api) and getting the store object returned?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.