Type alias CreateCustomerEventInput

CreateCustomerEventInput: {
    components: EventComponentInput[];
    customerIdentifier: CustomerIdentifierInput;
    externalId?: InputMaybe<Scalars["ID"]>;
    timestamp?: InputMaybe<Scalars["String"]>;
    title: Scalars["String"];
}

Type declaration

  • components: EventComponentInput[]

    The components used to create the event's contents.

  • customerIdentifier: CustomerIdentifierInput

    The customer id of the customer that the event is for.

  • Optional externalId?: InputMaybe<Scalars["ID"]>

    The external ID of this event. You can use this field to store your own unique identifier for this event. This must be unique.

  • Optional timestamp?: InputMaybe<Scalars["String"]>

    When provided, this will override the timestamp of the event. Useful when backfilling events. Must be in ISO 8601 format (e.g. 2024-10-28T18:30:00Z).

  • title: Scalars["String"]

    The title of the event.