What do you want to automate

with Payrexx and Ayrshare?

Prompt, edit and deploy AI agents that connect to Payrexx, Ayrshare 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 User with the Ayrshare API

Create a new User Profile under your Primary Profile. See the documentation

 
Try it
Delete User with the Ayrshare API

Delete a user profile you are the owner of. See the documentation

 
Try it
Update User with the Ayrshare API

Update an existing profile. See the documentation

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

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
      }
    })
  },
})

Connect Ayrshare

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: {
    ayrshare: {
      type: "app",
      app: "ayrshare",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://app.ayrshare.com/api/user`,
      headers: {
        Authorization: `Bearer ${this.ayrshare.$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