By: veera Bv user 04 Jan 2019 at 2:58 a.m. CST

4 Responses
veera Bv gravatar
Hi Team, Please help me with user registration endpoint. I have enable user registration page for user sign-up followed link [https://gluu.org/docs/ce/user-management/user-registration/](http://) it works well. Am looking an endpoint to register user from my console(Dashboard). When i check https://192.168.1.212/.well-known/openid-configuration its listed available endpoint. In this list i dint find user registration endpoint could please help for this. ``` "issuer": "https://192.168.1.212", "authorization_endpoint": "https://192.168.1.212/oxauth/restv1/authorize", "token_endpoint": "https://192.168.1.212/oxauth/restv1/token", "userinfo_endpoint": "https://192.168.1.212/oxauth/restv1/userinfo", "clientinfo_endpoint": "https://192.168.1.212/oxauth/restv1/clientinfo", "check_session_iframe": "https://192.168.1.212/oxauth/opiframe.htm", "end_session_endpoint": "https://192.168.1.212/oxauth/restv1/end_session", "jwks_uri": "https://192.168.1.212/oxauth/restv1/jwks", "registration_endpoint": "https://192.168.1.212/oxauth/restv1/register", "id_generation_endpoint": "https://192.168.1.212/oxauth/restv1/id", "introspection_endpoint": "https://192.168.1.212/oxauth/restv1/introspection", ``` Thanks, Veera

By Aliaksandr Samuseu staff 04 Jan 2019 at 10:02 a.m. CST

Aliaksandr Samuseu gravatar
Hi, Veera. `well-known/openid-configuration` only contains data related to OpenID Connect functionality. User registration is not part of OIDC, but Gluu's own feature. >Am looking an endpoint to register user from my console(Dashboard). Could you elaborate? What do you mean by "console"? FYI, you can add users manually by going to "Users -> Manage people" page in oxTrust web UI.

By veera Bv user 04 Jan 2019 at 1:42 p.m. CST

veera Bv gravatar
Hi Aliaksandr, We have website for registration for customer for to use our Dashboard. When user register i need to make user entry to Gluu because Dashboard authentication we are providing from Gluu. How to register user info to Gluu using API.

By Aliaksandr Samuseu staff 04 Jan 2019 at 2:25 p.m. CST

Aliaksandr Samuseu gravatar
Mainly two options are there for your case: 1. Use [SCIM protocol](https://gluu.org/docs/ce/3.1.4/user-management/scim2/) to push your users into Gluu's internal LDAP db. 2. Make its internal LDAP server accessible from outside, and create required user entries in there directly (not recommended as you'll have to deal with a lot of low-level stuff, and we won't be able to assist with it within the scope of Community Support)

By veera Bv user 07 Jan 2019 at 1:13 a.m. CST

veera Bv gravatar
Thanks Aliaksandr i followed first option it worked for me well.