Description #
This filter is used in Icontact integration for the request arguments.
apply_filters('fluentform/icontact_request_args', $options, $action, $method, $return_key);
Usage #
add_filter('fluentform/icontact_request_args', function ($options, $action, $method, $return_key) {
// do your stuff
return $options;
}, 10, 4);
Parameters #
- $options (array) Request Option
- $action (string) Action
- $method (Request Method) Request Type
- $return_key (string) Return Key
Placement #
This code should be placed in the functions.php file of your active theme.
Source Code #
This filter is located in FluentFormPro\src\Integrations\IContact\IContactApi -> make_request( $action = null, $options = array(), $method = ‘GET’, $return_key = null )