What do you want to automate

with DigitalOcean and Office 365 Management?

Prompt, edit and deploy AI agents that connect to DigitalOcean, Office 365 Management and 2,500+ other apps in seconds.

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

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Add SSH Key with the DigitalOcean API

Adds a new SSH to your account. See the docs here

 
Try it
Create a new domain with the DigitalOcean API

Create a new domain. See the docs here

 
Try it
Create Droplet with the DigitalOcean API

Creates a droplet. See the docs here

 
Try it
Create Snapshot with the DigitalOcean API

Creates a snapshot from a droplet. See the docs here

 
Try it
List all Droplets with the DigitalOcean API

List all Droplets. See the docs here

 
Try it
Integrate the DigitalOcean API with the Office 365 Management API
Setup the DigitalOcean API trigger to run a workflow which integrates with the Office 365 Management API. Pipedream's integration platform allows you to integrate DigitalOcean and Office 365 Management remarkably fast. Free for developers.

Overview of DigitalOcean

The Digital Ocean API provides programmatic access to manage Digital Ocean resources such as Droplets, Spaces, and Databases. With Pipedream, you can harness this API to automate a variety of tasks, like spinning up new servers, scaling resources, or integrating cloud infrastructure management into your workflow. It's a powerful tool for DevOps automation, allowing for the dynamic management of infrastructure in response to events or schedules.

Connect DigitalOcean

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    digital_ocean: {
      type: "app",
      app: "digital_ocean",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.digitalocean.com/v2/account`,
      headers: {
        Authorization: `Bearer ${this.digital_ocean.$auth.oauth_access_token}`,
      },
    })
  },
})

Connect Office 365 Management

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    office_365_management: {
      type: "app",
      app: "office_365_management",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.office_365_management.$auth.api_endpoint}/api/v1.0/${this.office_365_management.$auth.tenant_id}/activity/feed/subscriptions/list`,
      headers: {
        Authorization: `Bearer ${this.office_365_management.$auth.oauth_access_token}`,
      },
    })
  },
})

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

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo