omi_action_items
2 rows where conversation_id = "ea880988-35cd-4433-b1ad-368830f765e4"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 26 | Real Estate Offer Strategy and Dating Boundaries ea880988-35cd-4433-b1ad-368830f765e4 | Text clients when the revised counteroffer addendum is ready to sign |
| 27 | Real Estate Offer Strategy and Dating Boundaries ea880988-35cd-4433-b1ad-368830f765e4 | Work on the revised counteroffer addendum in the morning |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE omi_action_items (
id INTEGER PRIMARY KEY AUTOINCREMENT,
conversation_id TEXT NOT NULL,
description TEXT,
FOREIGN KEY (conversation_id) REFERENCES omi_conversations(id)
);
CREATE INDEX idx_omi_actions_conv ON omi_action_items(conversation_id);