@arunkumar413 The client API libraries provide are just thin wrappers around the web API calls. They support mostly the same functionality but are just more convenient (rather than having to explicitly access a web endpoint from your code)
Best posts made by dhait
-
RE: Difference between API and using a client library
Latest posts made by dhait
-
How about a REST API for the oauth2 endpoints?
For those customers who want to fully customize the OAuth2 journey (with our own login screens etc), without dealing with FusionAuth theming, it would be really nice to have REST-friendly OAuth2 endpoints.
Right now a "POST" to the
/oauth2/authorize
endpoint always returns status 200, with the text of the page telling you about any errors. It would be great if this could be accessed programatically, and let our own backend handle the redirect in the case of success. -
Email template per tenant
Can different sets of email templates be assigned to different tenants?
-
What is the base CSS used by the default theme?
We'd like to make some minor tweaks to the appearance of pages with our theme. FusionAuth appears to have a complete set of CSS classes, and we might only want to do some overrides to them, instead of starting from scratch and modifying every template.
Where could we find the CSS that you use for your default templates so we can add our own CSS to it?
-
RE: Difference between API and using a client library
@arunkumar413 The client API libraries provide are just thin wrappers around the web API calls. They support mostly the same functionality but are just more convenient (rather than having to explicitly access a web endpoint from your code)
-
Entity - create/update/delete API?
There does not seem to be an API to
manage Entities (though there is one for Entity Types).
Why? -
Exact example of using "GET /api/user/search?queryString={queryString}" or search_users_by_query(self, request)
I have not found any examples and I can not get a simple query to work. For example,
r=client.search_users_by_query("{ tenantId:a103befb-beb5-49c3-8481-0c832f061a3b }")
returns an error.
Can someone show the EXACT method of using this search API?