We've written an app that perform sync of users between LDAP and your rest SCIM API endpoint.
We noted that SCIM API respond with wrong URI in "$ref" and "location".
In detail, every URL should be relative, instead SCIM API reports URL like this :
Can you give me an example of what you are doing (include the HTTP Verb), what you are getting back, what you would have expected and a correlation ID from the response? Feel free to redact any content, I just want to make sure we understand where you are seeing this problem.
as you can see :
"$ref": "/api/v2/scim/v2/users/2c5a51c9-f035-4efc-a57b-f66b6ed3349a"
and
"location": "/api/v2/scim/v2/users/5e842539-e2ef-4c9d-bbc3-1dd81b181f87",
are not SCIM API valid locations, as the base path is "https://api.mypurecloud.ie/api/v2/scim" and by RFC the response should be relative
to that, so basically should be just "/users/5e842539-e2ef-4c9d-bbc3-1dd81b181f87".
Also there is an additiona "/v2/", so it's a sure 404, even if treated as root relative.
The /v2 after the /scim is specifying that this route is using v2 of the SCIM specification. If you omit that /v2 you will be using the "default" version of SCIM, which is currently also v2 of the SCIM spec. The default version can change if/when there is another version of the SCIM spec released.
I looked at the documentation that you pointed to, but I don't see anything in it that specifies the base URI. Could you quote the part of the documentation you are referring to?
We return the values relative to the Public API base path because we are implemented within our Public API, so we are returning ref paths following our Public APIs host name in keeping with our Public API conventions on self URIs.
If this does break a convention in the spec, please point out to use the relevant. I am not sure how feasible it is to change within our Public API framework, be if we are doing it wrong, we will want to check options for improving.