← HTTP / Webhook + Digital Ocean integrations

Create a new domain with Digital Ocean API on New Requests (Payload Only) from HTTP / Webhook API

Pipedream makes it easy to connect APIs for Digital Ocean, HTTP / Webhook and 1000+ other apps remarkably fast.

Trigger workflow on
New Requests (Payload Only) from the HTTP / Webhook API
Next, do this
Create a new domain with the Digital Ocean 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

This integration creates a workflow with a HTTP / Webhook trigger and Digital Ocean action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Requests (Payload Only) trigger
    1. Connect your HTTP / Webhook account
  3. Configure the Create a new domain action
    1. Connect your Digital Ocean account
    2. Configure Name
    3. Configure Ip address
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are 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.

Trigger

Description:Get a URL and emit the HTTP body as an event on every request
Version:0.1.1
Key:http-new-requests-payload-only

Trigger Code

import http from "../../http.app.mjs";

// Core HTTP component
// Returns a 200 OK response, emits the HTTP payload as an event
export default {
  key: "http-new-requests-payload-only",
  name: "New Requests (Payload Only)",
  // eslint-disable-next-line
  description: "Get a URL and emit the HTTP body as an event on every request",
  version: "0.1.1",
  type: "source",
  props: {
    // eslint-disable-next-line
    httpInterface: {
      type: "$.interface.http",
      customResponse: true,
    },
    http,
  },
  async run(event) {
    const { body } = event;
    this.httpInterface.respond({
      status: 200,
      body,
    });
    // Emit the HTTP payload
    this.$emit({
      body,
    });
  },
};

Trigger 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
N/AhttpInterface$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
HTTP / WebhookhttpappThis component uses the HTTP / Webhook app.

Trigger Authentication

The HTTP / Webhook API does not require authentication.

About HTTP / Webhook

Get a unique URL where you can send HTTP or webhook requests

Action

Description:Create a new domain. [See the docs here](https://docs.digitalocean.com/reference/api/api-reference/#operation/create_domain)
Version:0.0.1
Key:digital_ocean-create-domain

Digital Ocean Overview

You can use the Digital Ocean API to manage Droplets (virtual private servers),
resources within those Droplets, and other account-wide resources like domains
and images.

Examples of what you can build using the Digital Ocean API include:

  • A script to create and destroy Droplets on demand
  • A script to snapshot (back up) your Droplets on a regular basis
  • A script to add and remove SSH keys from your account
  • A script to manage domain records (DNS)
  • A script to add and remove Floating IPs from your account

Action Code

import digitalOceanApp from "../../digital_ocean.app.mjs";

export default {
  key: "digital_ocean-create-domain",
  name: "Create a new domain",
  description: "Create a new domain. [See the docs here](https://docs.digitalocean.com/reference/api/api-reference/#operation/create_domain)",
  version: "0.0.1",
  type: "action",
  props: {
    digitalOceanApp,
    name: {
      label: "Name",
      type: "string",
      description: "The name of the domain itself. This should follow the standard domain format of domain.TLD. For instance, example.com is a valid domain name.",
    },
    ipAddress: {
      label: "Ip address",
      type: "string",
      description: "This optional attribute may contain an IP address. When provided, an A record will be automatically created pointing to the apex domain.",
    },
  },
  async run({ $ }) {
    const api = this.digitalOceanApp.digitalOceanWrapper();
    const newDomainData = {
      name: this.name,
      ip_address: this.ipAddress,
    };
    const response = await api.domains.create(newDomainData);
    $.export("$summary", `Successfully created domain ${response.domain.name}.`);
    return response;
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
Digital OceandigitalOceanAppappThis component uses the Digital Ocean app.
Namenamestring

The name of the domain itself. This should follow the standard domain format of domain.TLD. For instance, example.com is a valid domain name.

Ip addressipAddressstring

This optional attribute may contain an IP address. When provided, an A record will be automatically created pointing to the apex domain.

Action Authentication

Digital Ocean uses OAuth authentication. When you connect your Digital Ocean account, Pipedream will open a popup window where you can sign into Digital Ocean and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Digital Ocean API.

Pipedream requests the following authorization scopes when you connect your account:

readwrite

About Digital Ocean

The developer cloud

More Ways to Connect Digital Ocean + HTTP / Webhook

Add SSH Key with Digital Ocean API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Digital Ocean
 
Try it
Add SSH Key with Digital Ocean API on New Requests from HTTP / Webhook API
HTTP / Webhook + Digital Ocean
 
Try it
Create Droplet with Digital Ocean API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Digital Ocean
 
Try it
Create Droplet with Digital Ocean API on New Requests from HTTP / Webhook API
HTTP / Webhook + Digital Ocean
 
Try it
Create Snapshot with Digital Ocean API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Digital Ocean
 
Try it
New Requests from the HTTP / Webhook API

Get a URL and emit the full HTTP event on every request (including headers and query parameters). You can also configure the HTTP response code, body, and more.

 
Try it
New Requests (Payload Only) from the HTTP / Webhook API

Get a URL and emit the HTTP body as an event on every request

 
Try it
New event when the content of the URL changes. from the HTTP / Webhook API

Emit new event when the content of the URL changes.

 
Try it
Send any HTTP Request with the HTTP / Webhook API

Send an HTTP request using any method and URL. Optionally configure query string parameters, headers, and basic auth.

 
Try it
Send GET Request with the HTTP / Webhook API

Send an HTTP GET request to any URL. Optionally configure query string parameters, headers and basic auth.

 
Try it
Send POST Request with the HTTP / Webhook API

Send an HTTP POST request to any URL. Optionally configure query string parameters, headers and basic auth.

 
Try it
Send PUT Request with the HTTP / Webhook API

Send an HTTP PUT request to any URL. Optionally configure query string parameters, headers and basic auth.

 
Try it
Return HTTP Response with the HTTP / Webhook API

Use with an HTTP Source that uses Return a custom response from your workflow as its HTTP Response

 
Try it