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

    Interface Contact

    A participant in a conversation typically representing a person. It is associated with a collection of channel identities.

    interface Contact {
        channel_identities?: ChannelIdentity[];
        channel_priority?: string[];
        display_name?: string;
        email?: string;
        external_id?: string;
        id?: string;
        language?: ContactLanguage;
        metadata?: string;
    }
    Index

    Properties

    channel_identities?: ChannelIdentity[]

    List of channel identities.

    channel_priority?: string[]

    List of channels defining the channel priority.

    display_name?: string

    The display name. A default 'Unknown' will be assigned if left empty.

    email?: string

    Email of the contact.

    external_id?: string

    Contact identifier in an external system.

    id?: string

    The ID of the contact.

    language?: ContactLanguage
    metadata?: string

    Metadata associated with the contact. Up to 1024 characters long.