Patch operation failed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2024 02:03 PM
Hi Team,
I am using SCIM2.0 User's Patch operation.
When I send a request without escape character, request getting executed successfully.
But when I am executing same request with escape characters, then I am getting 500 Internal server error
I checked for the input string and it's getting validated correctly.
Could you please help me here, what's going wrong ?
Thanks,
Prashant
- Labels:
-
Webex API
-
Webex Developer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2024 02:29 PM
In the first case, you're sending a json object as expected. In the faulty case, you're sending the whole json object as a string (take a look at the leading/trailing quotes). So you do not just mask the quotes but you're also sending a different payload.
The backend might try to parse the payload and expects a json object but just gets a string.
