Send Message

Send a message to all webhooks in an app. The message will be delivered to all webhooks associated with the app.

const message = await vartiq.webhook.message.create("APP_ID", {
  event: "user.created",
  data: {
    user: {
      id: 123,
      name: "John Doe"
    },
    action: "user.created"
  }
});

Send Message

Send a message to all webhooks in an app. The message will be delivered to all webhooks associated with the app.

const message = await vartiq.webhook.message.create("APP_ID", {
  event: "user.created",
  data: {
    user: {
      id: 123,
      name: "John Doe"
    },
    action: "user.created"
  }
});