FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. dhait
    3. Topics
    D
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 6
    • Best 1
    • Controversial 0
    • Groups 0

    Topics created by dhait

    • D

      How about a REST API for the oauth2 endpoints?

      General Discussion
      • • • dhait
      2
      0
      Votes
      2
      Posts
      435
      Views

      danD

      @dhait Hmmm. This issue is due to the OAuth2 specification. If we provided a REST endpoint, it wouldn't be OAuth/OIDC.

      If you want to fully customize the look and feel of the login and registration experience, but not use the FusionAuth hosted login pages, the recommended solution is to code directly against our REST APIs:

      https://fusionauth.io/docs/v1/tech/apis/login

      https://fusionauth.io/docs/v1/tech/apis/registrations

      Does this solve your problem?

    • D

      Unsolved Email template per tenant

      Q&A
      • • • dhait
      2
      0
      Votes
      2
      Posts
      823
      Views

      danD

      @dhait Yes.

      You can create as many email templates as you want, typically using the admin UI or the email API: https://fusionauth.io/docs/v1/tech/apis/emails

      Then, you assign them to tenants, using the Tenant admin UI or tenant API: https://fusionauth.io/docs/v1/tech/apis/tenants

      You are probably going to be interested in the emailConfiguration object which has all the tenant email template Ids.

    • D

      Unsolved What is the base CSS used by the default theme?

      Q&A
      • • • dhait
      2
      0
      Votes
      2
      Posts
      712
      Views

      danD

      @dhait

      You should copy the default theme (which is immutable) and then modify the CSS file.

      https://fusionauth.io/docs/v1/tech/themes/#templates has some documentation:

      Stylesheet (CSS) Optional This CSS stylesheet may be used to style the themed pages. This CSS will be included in the head tag in the Helpers head macro. You may also choose to include other remote stylesheets by using the <style> tag within the head macro.
    • D

      Entity - create/update/delete API?

      Q&A
      • api • • dhait
      2
      0
      Votes
      2
      Posts
      2.6k
      Views

      danD

      We were working on getting it documented and it shipped yesterday. Sorry for the delay!

      https://fusionauth.io/docs/v1/tech/apis/entity-management/ outlines all the relevant APIs, including entity CRUD.

      You might also be interested in the client credentials grant, one of the main use cases:

      configuring entities for the client credentials grant: https://fusionauth.io/docs/v1/tech/oauth/#configure-entities an example client credentials grant: https://fusionauth.io/docs/v1/tech/oauth/#example-client-credentials-grant
    • D

      Exact example of using "GET /api/user/search?queryString={queryString}" or search_users_by_query(self, request)

      Q&A
      • • • dhait
      2
      0
      Votes
      2
      Posts
      939
      Views

      danD

      An easy way to see the elastic search string for some queries is to go to the user search in the admin screen, click 'advanced' and then click 'show elastic query'.

      Here's an example elastic search post: https://fusionauth.io/community/forum/topic/110/how-can-i-get-all-users-for-an-application-using-the-api

      I know this isn't exactly what you asked for, but hope it helps some.