What do you want to automate

with Workflow Max and IONOS Hosting Services?

Prompt, edit and deploy AI agents that connect to Workflow Max, IONOS Hosting Services 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
Create Client Group with the Workflow Max API

Creates a new Client Group in Workflow Max. See the documentation

 
Try it
Delete Client Group with the Workflow Max API

Deletes the specified client group. See the documentation

 
Try it
Integrate the Workflow Max API with the IONOS Hosting Services API
Setup the Workflow Max API trigger to run a workflow which integrates with the IONOS Hosting Services API. Pipedream's integration platform allows you to integrate Workflow Max and IONOS Hosting Services remarkably fast. Free for developers.

Connect Workflow Max

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

Connect IONOS Hosting Services

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    ionos_hosting_services: {
      type: "app",
      app: "ionos_hosting_services",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.hosting.ionos.com/dns/v1/zones`,
      headers: {
        "accept": `application/json`,
        "x-api-key": `${this.ionos_hosting_services.$auth.public_prefix}.${this.ionos_hosting_services.$auth.secret}`,
        "cookie": `0b04270753322c986927738ac2b6c0d8=f0bdc4e5976f6d806c765101692526bc; DPX=v1:SBQ1uQuBY/:PKIEBpGz:68843834:de`,
      },
    })
  },
})

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