Home > Enterprise >  Resolving SystemForCrossDomainIdentityManagementBadResponse
Resolving SystemForCrossDomainIdentityManagementBadResponse

Time:04-22

I have implemented this enter image description here

CodePudding user response:

Your response doesn't align with the SCIM spec. The response to the POST (I think that's what it is, given the screenshot) is nesting the actual response inside of a "Result" object that is not defined in the spec at all.

Take a look at https://datatracker.ietf.org/doc/html/rfc7644#section-3.3 for an example of a correct response to a POST.

Also, there are a number of attributes in your response, outside of the "request" attribute/object, that aren't defined in the spec and are therefore noncompliant. Those would be:

"targetUrl": null, "success": true, "error": null, "unAuthorizedRequest": false,

  • Related