@jambonz/sdk
    Preparing search index...

    Interface MessageVerb

    interface MessageVerb {
        verb: "message";
        id?: string;
        to: string;
        from: string;
        text?: string;
        media?: string | string[];
        carrier?: string;
        account_sid?: string;
        message_sid?: string;
        actionHook?: ActionHook;
    }
    Index

    Properties

    verb: "message"
    id?: string
    to: string

    Destination phone number (E.164).

    from: string

    Sender phone number (E.164).

    text?: string

    Message text content.

    media?: string | string[]

    Media attachment URL(s) for MMS.

    carrier?: string

    Messaging carrier to use.

    account_sid?: string

    Account SID for sending.

    message_sid?: string

    Message SID for tracking.

    actionHook?: ActionHook

    Webhook when send completes.