← MongoDB

Delete a Document with MongoDB API

Pipedream makes it easy to connect APIs for MongoDB and 1000+ other apps remarkably fast.

Trigger workflow on
HTTP requests, schedules and app events
Next, do this
Delete a Document with the MongoDB API
No credit card required
Into to Pipedream
Watch us build a workflow
Watch us build a workflow
7 min
Watch now ➜

Trusted by 500,000+ developers from startups to Fortune 500 companies

Adyen logo
Brex logo
Carta logo
Checkr logo
Chameleon logo
DevRev logo
LinkedIn logo
Netflix logo
New Relic logo
OnDeck logo
Replicated logo
Scale AI logo
Teamwork logo
Warner Bros. logo
Xendit logo

Developers Pipedream

Getting Started

Create a workflow to Delete a Document with the MongoDB API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the Delete a Document action
    1. Connect your MongoDB account
    2. Select a Database
    3. Select a Collection
    4. Select a Document
  2. Select a trigger to run your workflow on HTTP requests, schedules or app events
  3. Deploy the workflow
  4. Send a test event to validate your setup
  5. Turn on the trigger

Integrations

Delete a Document with MongoDB API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + MongoDB
 
Try it
Delete a Document with MongoDB API on New Message from Discord API
Discord + MongoDB
 
Try it
Delete a Document with MongoDB API on New Message In Channels from Slack API
Slack + MongoDB
 
Try it
Delete a Document with MongoDB API on New Message in Channel from Discord Bot API
Discord Bot + MongoDB
 
Try it
Delete a Document with MongoDB API on New Submission from Typeform API
Typeform + MongoDB
 
Try it

Details

This is a pre-built, source-available component from Pipedream's GitHub repo. The component is developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Delete a Document on MongoDB
Description:Delete a single document by ID. [See the docs here](https://docs.mongodb.com/manual/tutorial/remove-documents/)
Version:0.1.3
Key:mongodb-delete-document

Code

import mongodbApp from "../../mongodb.app.mjs";

export default {
  key: "mongodb-delete-document",
  name: "Delete a Document",
  description: "Delete a single document by ID. [See the docs here](https://docs.mongodb.com/manual/tutorial/remove-documents/)",
  version: "0.1.3",
  type: "action",
  props: {
    mongodbApp,
    database: {
      propDefinition: [
        mongodbApp,
        "database",
      ],
    },
    collection: {
      propDefinition: [
        mongodbApp,
        "collection",
        (c) => ({
          database: c.database,
        }),
      ],
    },
    document: {
      propDefinition: [
        mongodbApp,
        "document",
        (c) => ({
          database: c.database,
          collection: c.collection,
        }),
      ],
    },
  },
  async run({ $ }) {
    await this.mongodbApp.deleteDocumentById(
      this.database,
      this.collection,
      this.document,
    );
    $.export("$summary", `Document "${this.document}" successfully deleted`);
  },
};

Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
MongoDBmongodbAppappThis component uses the MongoDB app.
DatabasedatabasestringSelect a value from the drop down menu.
CollectioncollectionstringSelect a value from the drop down menu.
DocumentdocumentstringSelect a value from the drop down menu.

Authentication

MongoDB uses API keys for authentication. When you connect your MongoDB account, Pipedream securely stores the keys so you can easily authenticate to MongoDB APIs in both code and no-code steps.

Before you connect to your Mongo database from Pipedream, please make sure your database is accessible from the public internet. You may need to add a firewall rule allowing connections from 0.0.0.0/0.

Then, enter the details of your Mongo host / database below.

About MongoDB

The global cloud database service for modern applications

More Ways to Use MongoDB

Triggers

New Collection from the MongoDB API

Emit new an event when a new collection is added to a database

 
Try it
New Database from the MongoDB API

Emit new an event when a new database is added

 
Try it
New Document from the MongoDB API

Emit new an event when a new document is added to a collection

 
Try it
New Field in Document from the MongoDB API

Emit new an event when a new field is added to a document

 
Try it

Actions

Create New Document with the MongoDB API

Create a new document in a collection of your choice. See the docs here

 
Try it
Find Document by Id with the MongoDB API

Retrieves a single document by ID. See the docs here

 
Try it
Search Documents with the MongoDB API

Search for specific documents or return all documents. See the docs here

 
Try it
Update a Document with the MongoDB API

Updates a single document by ID. See the docs here

 
Try it