@dalton_moen 
To reload a page from an iframe, you can use JavaScript code within the iframe itself. Here is an example of how you can reload the page from the iframe:
1 2 3 4 5  | 
// Reload the parent page from the iframe parent.location.reload(); // Alternatively, you can also use the following code to reload the parent page from the iframe: parent.location.href = parent.location.href;  | 
By using the parent.location.reload() or parent.location.href = parent.location.href code within the iframe, you can effectively reload the parent page where the iframe is embedded.