What do you want to automate with npm and Payrexx?
Prompt, edit and deploy AI agents that connect to npm, Payrexx and 2,800+ other apps in seconds. Trusted by 1,000,000+ developers from startups to Fortune 500 companies Create Gateway with Payrexx API on New Download Counts from npm API
Try it Create Manual Payout with Payrexx API on New Download Counts from npm API
Try it Create Paylink with Payrexx API on New Download Counts from npm API
Try it Delete Gateway with Payrexx API on New Download Counts from npm API
Try it Delete Invoice with Payrexx API on New Download Counts from npm API
Try it Load more
New Download Counts from the npm API
Try it New Package Version from the npm API
Try it Create Gateway with the Payrexx API
Try it Create Manual Payout with the Payrexx API
Try it Create Paylink with the Payrexx API
Try it Delete Gateway with the Payrexx API
Try it Delete Invoice with the Payrexx API
Try it Load more
Integrate the npm API with the Payrexx API
Setup the npm API trigger to run a workflow which integrates with the Payrexx API. Pipedream's integration platform allows you to integrate npm and Payrexx remarkably fast. Free for developers.
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