Send messages to your webhooks
const message = await vartiq.webhook.message.create({ appId: "APP_ID" }, { event: "user.created", data: { user: { id: 123, name: "John Doe" }, action: "user.created" } });
const message = await vartiq.webhook.message.create({ webhookId: "WEBHOOK_ID" }, { event: "user.created", data: { user: { id: 123, name: "John Doe" }, action: "user.created" } });