Create users externally

Hi guys,

is there a way (an API?) to externally create a shop user?
For some reasons, I can’t use the original registration form. I have two different pages (same database) with two different login systems but users should register only once. So I’ll create a script which executes the registration actions on both pages.

As the password is encoded, I can’t enter the data directly into the database. Any solutions?

Thanks!

You need to use the api.
http://docu.oxid-esales.com/CE/sourcecodedocumentation/4.4.8.34028/classox_user.html

The passwords are encoded with salted hash.

Thanks a lot!