Notes
Apex:
Account ac = new Account(Name='Bank of America');
insert ac;
Note newNote = new Note();
newNote.Title = 'Meeting Notes';
newNote.Body = 'A simple Note';
newNote.ParentId=ac.Id;
insert newNote;
Flow Builder:
Result:
Video
Video does not exists.