Sinch Node.js SDK - v1.5.0
    Preparing search index...

    Interface ContactIdentitiesDuplicationEvent

    This callback is sent when duplicates of channel identities are found between multiple contacts in the contact database during message and event processing.

    interface ContactIdentitiesDuplicationEvent {
        accepted_time?: Date;
        app_id: string;
        correlation_id?: string;
        duplicated_contact_identities_notification: DuplicatedIdentitiesEvent;
        event_time?: Date;
        message_metadata?: string;
        project_id: string;
        trigger: "CONTACT_IDENTITIES_DUPLICATION";
    }

    Hierarchy

    • ConversationCallbackEvent
      • ContactIdentitiesDuplicationEvent
    Index

    Properties

    accepted_time?: Date

    Timestamp marking when the channel callback was accepted/received by the Conversation API.

    app_id: string

    Id of the subscribed app.

    correlation_id?: string

    The value provided in field correlation_id of a send message request.

    duplicated_contact_identities_notification: DuplicatedIdentitiesEvent

    DuplicatedIdentitiesEvent

    event_time?: Date

    Timestamp of the event as provided by the underlying channels.

    message_metadata?: string

    Context-dependent metadata. Refer to specific callback's documentation for exact information provided.

    project_id: string

    The project ID of the app which has subscribed for the callback.

    trigger: "CONTACT_IDENTITIES_DUPLICATION"

    Name of the trigger responsible for this event.