How can I see a list of all recent entries from all forms?

Hello,

I have a lot of forms and I want to know if there is an option to follow my entries, for example, all entries that were filled out today or in the last week.

So far Gravity lets me do it only on a single form basis.

Hi there,

Is there a way that someting like this can help you :
GET ENTRIES

I thinkl get entries from all forms look like something like this

$form_id = '0';
$entries = GFAPI::get_entries( $form_id );
foreach ( $entries as $entry) : 
    echo '<pre>'; 
        echo var_dump( $entry );
    echo '</pre>';
endforeach;

Jo

Hi Tsvi,

The GFAPI which Jonathan suggests has a lot of search_criteria that you can customize. Depending on front-end / admin where you are hoping to review the entries, building something with less code via Gravity View (front-end) or Gravity Flow’s status page (admin or front-end) both have options for multi-form filterable displays.

Good luck,
Jamie