By: Qasim Baqri user 30 Oct 2015 at 7:51 a.m. CDT

2 Responses
Qasim Baqri gravatar
Hi, Is there some url for SCIM where i can check all the endpoints currently provided by gluu like .well-known/openid-configuration for openid Thanks, Qasim

By Michael Schwartz Account Admin 30 Oct 2015 at 9:01 a.m. CDT

Michael Schwartz gravatar
I like the idea. I'll check if SCIM 2.0 includes a discovery endpoint. If not, I'm going to create a feature request for this in the oxTrust github project. See also: [http://www.gluu.org/docs/admin-guide/SCIM/#available-endpoints](http://www.gluu.org/docs/admin-guide/SCIM/#available-endpoints)

By Michael Schwartz Account Admin 06 Nov 2015 at 9:22 a.m. CST

Michael Schwartz gravatar
ok, we liked this idea so much, we decided to incorporate into Gluu Server 2.4. Here is sample response from https://<host>/.well-known/scim-configuration [ { "version" : "1.0", "authorization_supported" : [ "uma", "openid" ], "user_endpoint" : "http://idp.example.com/identity/seam/resource/restv1/Users", "group_endpoint" : "http://idp.example.com/identity/seam/resource/restv1/Groups", "bulk_endpoint" : "http://idp.example.com/identity/seam/resource/restv1/Bulk", "user_search_endpoint" : "http://idp.example.com/identity/seam/resource/restv1/Users/Search" }, { "version" : "2.0", "authorization_supported" : [ "uma", "openid" ], "user_endpoint" : "http://idp.example.com/identity/seam/resource/restv1/v2/Users", "group_endpoint" : "http://idp.example.com/identity/seam/resource/restv1/v2/Groups", "bulk_endpoint" : "http://idp.example.com/identity/seam/resource/restv1/v2/Bulk", "service_provider_endpoint" : "http://idp.example.com/identity/seam/resource/restv1/v2/ServiceProviderConfig", "resource_types_endpoint" : "http://idp.example.com/identity/seam/resource/restv1/v2/ResourceTypes", "user_search_endpoint" : "http://idp.example.com/identity/seam/resource/restv1/v2/Users/Search" } ]