What do you want to automate

with bexio and Payrexx?

Prompt, edit and deploy AI agents that connect to bexio, Payrexx and 2,800+ 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 Gateway with the Payrexx API

Create a new gateway. See the documentation

 
Try it
Create Manual Payout with the Payrexx API

Create a manual payout. See the documentation

 
Try it
Create Paylink with the Payrexx API

Create a paylink. See the documentation

 
Try it
Delete Gateway with the Payrexx API

Delete a gateway. See the documentation

 
Try it
Delete Invoice with the Payrexx API

Delete an invoice. See the documentation

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

Overview of bexio

The bexio API offers a gateway to streamline administrative tasks linked with small business management. With this API, you can automate processes, sync data across platforms, and enhance efficiency by reducing manual input. Pipedream, with its serverless execution environment, lets you create complex workflows around bexio. You can automate invoicing, manage contacts, monitor projects, and integrate with other services like CRMs, email, and payment gateways.

Connect bexio

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: {
    bexio: {
      type: "app",
      app: "bexio",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://office.bexio.com/api2.php/${this.bexio.$auth.oauth_uid}/company_profile`,
      headers: {
        Authorization: `Bearer ${this.bexio.$auth.oauth_access_token}`,
        "Accept": `application/json`,
      },
    })
  },
})

Connect Payrexx

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { axios } from "@pipedream/platform";
import crypto from "crypto";

export default defineComponent({
  props: {
    payrexx: {
      type: "app",
      app: "payrexx",
    }
  },
  async run({ steps, $ }) {
		const INSTANCE_NAME = this.payrexx.$auth.instance_name;
    const INSTANCE_API_SECRET = this.payrexx.$auth.api_key;

    const apiSignature = crypto
      .createHmac("sha256", INSTANCE_API_SECRET)
      .update("")
      .digest("base64")

    return await axios($, {
      url: "https://api.payrexx.com/v1.0/PaymentProvider/",
      method: "GET",
      params: {
        instance: INSTANCE_NAME,
        ApiSignature: apiSignature
      }
    })
  },
})

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