@webitel/api-services
    Preparing search index...

    Contact represents an external messaging identity.

    interface WebitelImApiGatewayV1Contact {
        appId?: string;
        createdAt?: string;
        isBot?: boolean;
        iss?: string;
        metadata?: WebitelImApiGatewayV1ContactMetadata;
        name?: string;
        sub?: string;
        type?: string;
        updatedAt?: string;
        username?: string;
        vias?: WebitelImApiGatewayV1Via[];
    }
    Index

    Properties

    appId?: string

    Identifier of the specific integration app or bot.

    createdAt?: string

    Record creation timestamp (Unix Epoch in milliseconds).

    isBot?: boolean

    Represents if usere is real person or automatic script.

    iss?: string

    Provider-specific unique identifier (Issuer ID).

    Additional dynamic attributes provided by the messenger.

    name?: string

    Display name of the contact.

    sub?: string

    Associated internal system subject/identifier.

    type?: string

    Channel type (e.g., 'webchat', 'telegram').

    updatedAt?: string

    Last record update timestamp (Unix Epoch in milliseconds).

    username?: string

    Technical username or handle.