Notes
Apex:
Case cs = new Case (Priority='High', Origin ='Phone');
insert cs;
Contact con = new Contact (FirstName ='John', LastName='Smith');
insert con;
Task newCall = new Task(
WhatId=cs.Id,
Description = 'New Phone Call Test',
WhoId = con.Id,
Subject = 'Call',
);
insert newCall;
Flow Builder:
Video
Video does not exists.