Business Central API webhook
@ajkauffmann
code:
data:privatelast updated:2 years ago
today
Build integrations remarkably fast!
You're viewing a public workflow template.
Sign up to customize, add steps, modify code and more.
Join 800,000+ developers using the Pipedream platform
steps.
trigger
HTTP API
Deploy to generate unique URL
This workflow runs on Pipedream's servers and is triggered by HTTP / Webhook requests.
steps.
check_validationToken
auth
to use OAuth tokens and API keys in code via theauths object
code
Write any Node.jscodeand use anynpm package. You can alsoexport datafor use in later steps via return or this.key = 'value', pass input data to your code viaparams, and maintain state across executions with$checkpoint.
async (event, steps) => {
1
2
3
4
5
6
7
8
9
10
}
11
if (event.query.validationToken) {
  var validationToken = event.query.validationToken;
  await $respond({
    immediate: true,
    status: 200,
    body: validationToken
  });
  $end(`Processed validation token: ${validationToken}`);
}
steps.
strip_byte_order_mark
auth
to use OAuth tokens and API keys in code via theauths object
code
Write any Node.jscodeand use anynpm package. You can alsoexport datafor use in later steps via return or this.key = 'value', pass input data to your code viaparams, and maintain state across executions with$checkpoint.
async (event, steps) => {
1
2
3
4
5
6
}
7
const stripBom = require('strip-bom-string');

const buffer = Buffer.from(steps.trigger.raw_event.body_b64, 'base64');
var data = stripBom(buffer.toString('utf8'));
this.notifications = JSON.parse(data);
steps.
check_clientState
auth
to use OAuth tokens and API keys in code via theauths object
code
Write any Node.jscodeand use anynpm package. You can alsoexport datafor use in later steps via return or this.key = 'value', pass input data to your code viaparams, and maintain state across executions with$checkpoint.
async (event, steps) => {
1
2
3
4
5
6
7
8
9
10
}
11
var notifications = steps.strip_byte_order_mark.notifications;

if (notifications.value[0].clientState != 'SuperSecretValue123!') {
  await $respond({
    immediate: true,
    status: 400
  });
  $end(`Received notification with incorrect clientState`);
}
steps.
log_notification
auth
to use OAuth tokens and API keys in code via theauths object
code
Write any Node.jscodeand use anynpm package. You can alsoexport datafor use in later steps via return or this.key = 'value', pass input data to your code viaparams, and maintain state across executions with$checkpoint.
async (event, steps) => {
1
2
3
4
5
6
}
7
  await $respond({
    immediate: true,
    status: 202
  });
console.log(steps.strip_byte_order_mark.notifications);