There is no screen to create an interview, the platform makes one every time a flow runs. What an admin actually manages is the set of paused and waiting interviews. Here is how to find, resume, and tidy them, plus the settings that govern where errors and resume actions land.
- Open the paused and waiting list
In Setup, search for Paused and Waiting Interviews under the Flows area. The list shows each persisted interview, its flow, the user who paused it, and the element it stopped on. This is your single view of every interview currently sitting in the FlowInterview object.
- Resume or delete an interview
Select an interview to resume it on behalf of the user or to delete it. Remember that resuming runs the rest of the flow as the user who resumes it, which can change record access. Delete only after confirming the saved scenario is genuinely abandoned.
- Set the fault email recipient
In Process Automation Settings, set the default workflow user and the email address that receives unhandled flow faults. Point this at an admin or a distribution list so production errors do not silently reach the running user.
- Schedule a cleanup
Build a schedule-triggered flow or scheduled Apex that queries FlowInterview for rows older than your retention threshold and deletes them. Run it monthly so abandoned screen flows do not pile up in the paused list.
The Setup page that shows every persisted interview, with actions to resume or delete each one.
Where the default workflow user and the unhandled-fault email recipient are configured for all flows in the org.
The Home page component that lets each user find and resume their own paused screen flows without admin help.
- Resuming a paused interview changes the running user, so record visibility for the rest of the flow may differ from when it was paused.
- Bulk inserts create one interview per matching record in a single transaction, all sharing one governor budget, so test with at least 200 records.
- Paused screen-flow interviews never expire on their own and will accumulate in FlowInterview until something resumes or deletes them.