Description
Allows custom actions to be performed after creating the contact.
Usage
add_action( 'gform_zohocrm_post_create_contact', $contact_record, $contact, $feed, $entry, $form ); return $contact_id; }
Parameters
Example
add_action( 'gform_zohocrm_post_create_contact', 'action_after_contact_creation', 10, 5 ); function action_after_contact_creation( $contact_record, $contact, $feed, $entry, $form ) { // Do your stuff }
Placement
This code should be placed in the functions.php file of your active theme.
Since
This filter was added in Zoho CRM version 1.8.
Source Code
This filter is located in class-gf-zohocrm.php.