0 How to use the REST API to modify a person 4 Ben Wiley posted 9 Years Ago I'm working on a project that uses the Rock REST API. My goal at the moment (baby steps) is to update a person's nickname. The OData video doesn't seem to address PUT/POST/PATCH, just GET. Also, I see the official documentation is coming soon. I am using a rest client to GET api/People/3. I get JSON as expected. Now to update that nickname: I've tried POST, PUT, and PATCH to api/People/3 with {"NickName": "Newnickname"} in the body. Doing this I get a 400. I've also tried copying the entire JSON object from the GET response, changing the nickname value, and then sending it all back again with PUT, POST, and PATCH. Doing any of these this I get a 500. What is the proper way to update an entity through the API? Is there a way to update one (or a small subset of) attributes? NOTE: I am not using .NET, so I don't have direct access to the Rock entity type classes. UPDATE: I was able to modify a new person's nickname that did not have a Suffix. I did this by PUT to api/People/:id with the entire JSON document received by GET to the same endpoint and then changing the nickname field. But then I added a suffix to that person through the web client. The GET request sends a nested JSON object for SuffixValue. I tried the PUT with the nested object and also tried removing the SuffixValue object altogether (leaving the seperate SuffixValueId attribute), but got a 500 for everything I tried.