import Mobilerun from '@mobilerun/sdk';
const client = new Mobilerun({
apiKey: process.env['MOBILERUN_CLOUD_API_KEY'], // This is the default and can be omitted
});
const response = await client.hooks.perform();
console.log(response);[
{}
]Zapier Perform endpoint - processes webhook payloads.
import Mobilerun from '@mobilerun/sdk';
const client = new Mobilerun({
apiKey: process.env['MOBILERUN_CLOUD_API_KEY'], // This is the default and can be omitted
});
const response = await client.hooks.perform();
console.log(response);[
{}
]Bearer token via Authorization header
Successful Response
Was this page helpful?