Usage
Webhook Messages
Send messages to your webhooks
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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"
}
});