What do you want to automate

with Microsoft Bookings and Ipregistry?

Prompt, edit and deploy AI agents that connect to Microsoft Bookings, Ipregistry and 2,900+ 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
Integrate the Microsoft Bookings API with the Ipregistry API
Setup the Microsoft Bookings API trigger to run a workflow which integrates with the Ipregistry API. Pipedream's integration platform allows you to integrate Microsoft Bookings and Ipregistry remarkably fast. Free for developers.

Connect Microsoft Bookings

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: {
    microsoft_bookings: {
      type: "app",
      app: "microsoft_bookings",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://graph.microsoft.com/v1.0/solutions/bookingBusinesses`,
      headers: {
        Authorization: `Bearer ${this.microsoft_bookings.$auth.oauth_access_token}`,
      },
    })
  },
})

Connect Ipregistry

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: {
    ipregistry: {
      type: "app",
      app: "ipregistry",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.ipregistry.co`,
      headers: {
        "authorization": `ApiKey ${this.ipregistry.$auth.api_key}`,
      },
    })
  },
})

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