I am trying to write a simple HTTP PUT command to update a file in an IBM Connections community. I find the syntax of creating a file in a community on IBM Connections wiki. But couldn't locate any information on how to update an existing community file.
To be specific, I know how to update the file in my own collection:
PUT /files/basic/api/myuserlibrary/document/f7064edd-477a-44b7-85a3-d35276e4a362/media
Content-Type=application/binary
X-Update-Nonce=myNonce
Filename=myFile
But couldn't quite figure out how to do similar operation for an existing file in community.
NOTE: I am writing the code in VBA within Excel, using the XMLHTTP reference library to send the HTTP request to the server.