So far I have been deleting fields of documents through the REST API with the appropriate PATCH
method. The API request as constructed in Postman is as follows:
url: https://firestore.googleapis.com/v1/projects/{project name}/databases/(default)/documents/{collection name}/{document name}/?updateMask.fieldPaths={name of field for deletion}
body of request:
{
"fields": {}
}
with the approriate authorization headers. However this method can delete a single field from a single document.
How can I construct the request so that I can delete multiple fields from multiple documents on one go?