Member Junction
    Preparing search index...

    The REST payload ITwilioRestLike.calls.create accepts (the subset we use).

    interface TwilioCreateCallParams {
        From: string;
        StatusCallback?: string;
        To: string;
        Twiml: string;
    }
    Index

    Properties

    From: string

    Originating caller-id / DID. Maps to Twilio's from.

    StatusCallback?: string

    Optional status-callback URL for lifecycle events. Maps to Twilio's statusCallback.

    To: string

    Destination number (E.164). Maps to Twilio's to.

    Twiml: string

    The TwiML executed when the call connects (our <Connect><Stream>). Maps to Twilio's twiml.