Gravity Forms Zapier Add-On v3.1.1
v3.1.1 | 2018-12-13
- Added gform_zapier_request_body filter.
Example:
add_filter('gform_zapier_request_body', 'change_date_format', 10, 4);
function change_date_format( $body, $feed, $entry, $form ){
$body['Entry Date'] = gmdate('Y-m-d', strtotime( $entry['date_created'] ) );
return $body;
}