marius2k12
marius2k12

Reputation: 1101

Magento API, customer.info

With the Magento SOAP API I can retrieve customer information.

From: http://www.magentocommerce.com/api/soap/customer/customer.info.html

A 'customerCustomerEntity' has the following:

Type    Name        Description 
int     store_id    Store ID

My question:

What is a customer's store_id? Is it the store where he originally signed up or sth. else?

Thanks in advance!

Upvotes: 0

Views: 357

Answers (1)

Andrew
Andrew

Reputation: 12809

That's correct, when you create a new customer in the magento admin you will notice there's a field "Associate to website".

This is so you can have users associated with separate websites on the same installation and keep them separate.

You could have a pet store, and an electronics store for example, and you would like to know which customers registered through which website, this will allow you to target them better for newsletters etc.

Upvotes: 1

Related Questions