discord.onEntitlementCreated receives ENTITLEMENT_CREATE when Discord grants or sells one of your application’s SKUs.
automations/discord-entitlement.automation.ts
account selects the Discord application.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Start an automation when Discord creates an application entitlement.
discord.onEntitlementCreated receives ENTITLEMENT_CREATE when Discord grants or sells one of your application’s SKUs.
import { automation } from "automate.ax"
import { discord } from "automate.ax/discord"
export default automation("Record Discord entitlement", () => {
const event = discord.onEntitlementCreated()
// Grant the Discord SKU identified by event.data.skuId.
})
account selects the Discord application.