| # | Timestamp (CT) | Caller Number | Twilio Call SID | Consent | Method | Script Ver. | Recording |
|---|---|---|---|---|---|---|---|
| 047 | 2026-04-07 14:32:11 | +1 (936) 555-0192 | CA3f8a92b1e4c5d6e7f8a9b0c1d2e3f4a5 | Granted | Verbal | v1.2 | ▶ Play |
| 046 | 2026-04-07 11:18:44 | +1 (281) 555-0047 | CA7b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6e | Granted | Key Press | v1.2 | ▶ Play |
| 045 | 2026-04-06 16:55:02 | +1 (713) 555-0381 | CA1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d | Declined | Verbal | v1.2 | ▶ Play |
| 044 | 2026-04-06 14:09:37 | +1 (936) 555-0774 | CA9e8d7c6b5a4f3e2d1c0b9a8f7e6d5c4b | Granted | Key Press | v1.2 | ▶ Play |
| 043 | 2026-04-05 09:22:15 | +1 (832) 555-0228 | CA4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a | Timeout | Verbal | v1.2 | ▶ Play |
| 042 | 2026-04-04 15:41:58 | +1 (409) 555-0156 | CA2c3d4e5f6a7b8c9d0e1f2a3b4c5d6e7f | Granted | Verbal | v1.1 | ▶ Play |
| 041 | 2026-04-04 10:07:33 | +1 (936) 555-0619 | CA6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c | Granted | Key Press | v1.1 | ▶ Play |
| 040 | 2026-04-03 13:29:04 | +1 (713) 555-0094 | CA0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e | Declined | Verbal | v1.1 | ▶ Play |
Agent Opening Script — v1.2
The following script is delivered verbatim at the start of every inbound call. The call does not proceed past Step 2 without an affirmative consent response. Consent method (verbal "yes" or key press "1") and outcome are logged immediately.
consent_log Table Schema
Schema below will be created in the DUNNAI MySQL database. The phone agent writes one row per call at the moment consent is captured, before any further conversation proceeds.
CREATE TABLE consent_log ( id INT UNSIGNED NOT NULL AUTO_INCREMENT, call_sid VARCHAR(64) NOT NULL, -- Twilio Call SID (CA...) caller_number VARCHAR(20) NOT NULL, -- E.164 format e.g. +19365550192 called_number VARCHAR(20) NOT NULL, -- Your toll-free number consent_status ENUM('granted','declined','timeout') NOT NULL, consent_method ENUM('verbal','keypress','none') NOT NULL, script_version VARCHAR(10) NOT NULL DEFAULT 'v1.2', recording_sid VARCHAR(64) NULL, -- Twilio Recording SID (RE...) recording_url VARCHAR(512) NULL, -- URL to consent recording segment caller_ip VARCHAR(45) NULL, -- Twilio webhook origin IP created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY uq_call_sid (call_sid), KEY idx_caller (caller_number), KEY idx_status (consent_status), KEY idx_created (created_at) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;