SCIM endpoints always return 404 file not found

I’m try to retrieve user data from SCIM API, but always i receive a 404 when i try make the request,
my instalation is up on “http://200.xxx.xxx.xxx:8080/” an i can log in using the browser normally,
but if i trey get data from endpoint : http://200.xxx.xxx.xxx:8080/identityiq/scim/v2/Accounts for exemple, it returns me an 404, and all endpoints of the documentation returns 404 too

Are there any customizations on your web.xml file? Out of the box, the file defines the URL for the SCIM service:

    <servlet-mapping>
      <servlet-name>JAX-RS SCIM REST Servlet</servlet-name>
      <url-pattern>/scim/v2/*</url-pattern>
    </servlet-mapping>
    ...
    
    <servlet>
      <servlet-name>JAX-RS SCIM REST Servlet</servlet-name>
      <servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
    ...
    </servlet>
1 Like

Thats solved my problem,

in my config i dont have the path ‘identityiq’ so http://200.xxx.xxx.xxx:8080/scim/v2/Accounts works fine.

thank you so much!!!