I can import customers with the API using /rest/all/V1/customers
endpoint. I can also supply a password
.
But is it possible to import a customer with a hashed password? If possible, how would I do that? To be clear, I just want to supply a hashed password in the request. It’s coming from Magento 1 and is MD5 hashed (which M2 supports).
I tried password_hash
(named like the field in the table) instead, but that doesn’t work. The field stays NULL.
TL:DR
How can I import customers with hashed passwords with the API?