Description
Allows custom actions to be performed after creating the task.
Usage
{ add_action( 'gform_zohocrm_post_create_task', $task_record, $task, $feed, $entry, $form ); return $task_id; }
Parameters
Example
add_action( 'gform_zohocrm_post_create_task', 'action_after_task_creation', 10, 5 ); function action_after_task_creation( $task_record, $task, $feed, $entry, $form ) { // Do your stuff }
Since
This filter was added in Zoho CRM version 1.8.
Source Code
This filter is located in class-gf-zohocrm.php.