Skip to content
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.

ETags and Optimistic Concurrency

joshgav edited this page Oct 23, 2014 · 1 revision

The O365 Files Service uses ETags (short for Entity Tags, link to HTTP/1.1 RFC 2616 here) to provide optimistic concurrency control. To update or delete a file, you must supply the current ETag of the file in a If-Match header, or specify If-Match: * to overwrite no matter what.

Do not add If-Match: * to new files, as the * implies that something exists.

Clone this wiki locally