I am attempting to update a Podio field (category field) value using a PUT call. I have tried dozens of variations on the below, but using what I found on the Podio developer site, I'm placing a PUT call using the following info:
PUT http://api.podio.com/item/{item_id}/value/{field_id} (These are correct)
Content-Type: application/json; charset=utf-8
Authorization: OAuth2 {access_token} (Again, this is correct)
"prequal-sent": 1
I have tried many different variations on the JSON itself, but the above is what the App Developer section says should would.
My issue is that no matter what I do, Podio just removes all of the data in that field and responds with a "success" response. So I know I'm authorized, and accessing the correct field, I just can't figure out the JSON to actually make it work. Any help would be greatly appreciated.