v1

latestOpenAPI 3.0.02026-07-1792452.6 KB

Delete Documents

Delete multiple documents that match a query.

post/action/deleteMany

Request body

dataSourcestring required

The name of a linked MongoDB Atlas data source. This is commonly "mongodb-atlas" though it may be different in your App if you chose a different name when you created the data source.

databasestring required

The name of a database in the specified data source.

collectionstring required

The name of a collection in the specified database.

filterobject

A MongoDB query filter that matches documents. For a list of all query operators that the Data API supports, see Query Operators.

Response

Deleted

deletedCountnumber required

The number of documents that were deleted.

Example response

{
  "deletedCount": 12
}