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

    Interface CapabilityNotification

    interface CapabilityNotification {
        capability_status?:
            | "CAPABILITY_UNKNOWN"
            | "CAPABILITY_FULL"
            | "CAPABILITY_PARTIAL"
            | "NO_CAPABILITY";
        channel?: string;
        channel_capabilities?: string[];
        contact_id?: string;
        identity?: string;
        reason?: Reason;
        request_id?: string;
    }
    Index

    Properties

    capability_status?:
        | "CAPABILITY_UNKNOWN"
        | "CAPABILITY_FULL"
        | "CAPABILITY_PARTIAL"
        | "NO_CAPABILITY"

    Status indicating the recipient's capability on the channel.

    channel?: string

    ConversationChannel

    channel_capabilities?: string[]

    When capability_status is set to CAPABILITY_PARTIAL, this field includes a list of the supported channel-specific capabilities reported by the channel.

    contact_id?: string

    The ID of the contact.

    identity?: string

    The channel identity. For example, a phone number for SMS, WhatsApp, and Viber Business.

    reason?: Reason

    Reason

    request_id?: string

    ID generated when submitting the capability request. Can be used to detect duplicates.