What http method shall I use to update a object in TS API? PUT or PATCH?
Eduardo,
Generally speaking, you'll want to use a PATCH HTTP verb instead of PUT. This is because Tempo Social will only update the properties you specify when submitting a PATCH request. If you send a PUT request instead, then any property not specified in the JSON body will be cleared and emptied.