When a user signup automatically have them put into specific security role

Hi team - I’m using a REST API to signs up and login users in backendless via Thunkable. My question is how do I automatically put/assign a user into a security role/group when that user signs up for an account. Currently, when the user signs up they go into the general “authenticated users” roles by default.

Hi Ryan,

This can be accomplished in an API event handler. Specifically the handler for the user registration API call. It should be “after register” handler and in there, you can assign the role to the user that is being created.

Here are a few videos that talk about creating a codeless API event handler:

Regards,
Mark

Thanks Mark - I will take a look.