Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
const apiClient = new Embedded("YOUR_API_KEY"); await apiClient.identify(userId); let data = await apiClient.Events.list();
const apiClient = new Embedded("YOUR_API_KEY"); await apiClient.identify(userId); let eventName = "Get Customers"; let bodyData = { name: "Gregg" }; let data = await apiClient.Events.run(eventName, bodyData);