action redeal_get_events { label: "get events for analytics" description: "By passing in the company, site or deal Id a set of user interaction event records is returned. For pagination of a large result set use queryexecutionid and nexttoken instead.\n" provider: redeal method: GET path: "/events" encoding: json input: { type: "object" properties: { company: { type: "string" } deal: { type: "string" } nexttoken: { type: "string" } queryexecutionid: { type: "string" } site: { type: "string" } type: { type: "string" enum: ["all", "clicks", "contacts"] } } additionalProperties: false } output: { type: "array" items: { type: "object" required: ["timestamp", "role", "flow", "deal", "click", "channel", "impression", "user", "device", "flowstep", "latitude", "longitude", "devicetype", "resolution", "os", "userlanguage", "browsertype", "revenue", "total", "denyreason", "session", "optin", "site", "contact", "code", "currency", "company", "email", "emailaddrsha256", "agent", "flowtype", "ip", "delay", "site name", "deal name", "clicks", "cost", "costcurrency"] properties: { agent: { type: "string" } browsertype: { type: "string" } channel: { type: "string" } click: { type: "string" } clicks: { type: "integer" } code: { type: "string" } company: { type: "string" } contact: { type: "string" } cost: { type: "number" } costcurrency: { type: "string" } currency: { type: "string" } deal: { type: "string" } "deal name": { type: "string" } delay: { type: "integer" } denyreason: { type: "string" } device: { type: "string" } devicetype: { type: "string" } email: { type: "string" } emailaddrsha256: { type: "string" } flow: { type: "string" } flowstep: { type: "string" } flowtype: { type: "string" } impression: { type: "string" } ip: { type: "string" } latitude: { type: "string" } longitude: { type: "string" } optin: { type: "string" } os: { type: "string" } resolution: { type: "string" } revenue: { type: "number" } role: { type: "string" } session: { type: "string" } site: { type: "string" } "site name": { type: "string" } timestamp: { type: "string" format: "date-time" } total: { type: "number" } user: { type: "string" } userlanguage: { type: "string" } } } } }