Signup user via API

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
mgqz
User
Posts: 88

Signup user via API

Post by mgqz »

Hi, I have enabled registry and email confirmation to Register a new user of my app.

The form register.php is working fine and email activation is working.

Is there a way to achieve the registry via an api call, since PHPM19 is the backend but I need to signup users via a mobile app.

Another way could work will be to iframe the register.php , can this form be customized to fit in the app. Or what is the best approach.

thanks


arbei
User
Posts: 9396

Post by arbei »

You may try to add your own API action. Read the topic REST API > Create Your Own API Action in the help file. In the action you may create an instance of register page class and call run(), e.g.

$reg = new register();
return $reg->run();


Post Reply