When POSTing, the following works:
1"profile_picture": {2 "FileName": "name",3 "File": "file_data"4 }So setting a profile picture works. Now I’d like to remove/clear the profile picture of a user. I have tried the following JSON bodies in a PATCH, but none seem to work:
1{"profile_picture": { "FileName": "", "File": "" }}2{"profile_picture": { "FileName": null, "File": null }}3{"profile_picture": null}4{"profile_picture": ""}5{"profile_picture": { "FileName": null }}6{"profile_picture": { "FileName": "" }}7{"profile_picture": { "File": "" }}8{"profile_picture": { "File": null }}9{"profile_picture_data": null}How can I clear the columns ‘profile_picture’ & ‘profile_picture_data’ in the usr table in the IAM using a PATCH API call?

