action hubapi_post_events_v3_send { label: "Sends Custom Behavioral Event" description: "Endpoint to send an instance of a behavioral event" provider: hubapi method: POST path: "/events/v3/send" encoding: json input: { type: "object" required: ["eventName", "properties"] properties: { email: { type: "string" description: "Email of visitor" } eventName: { type: "string" description: "Internal name of the event-type to trigger" } objectId: { type: "string" description: "The object id that this event occurred on. Could be a contact id or a visitor id." } occurredAt: { type: "string" format: "date-time" description: "The time when this event occurred (if any). If this isn't set, the current time will be used" } properties: { type: "object" description: "Map of properties for the event in the format property internal name - property value" } utk: { type: "string" description: "User token" } } } output: { type: "object" additionalProperties: true } }