woocommerce_api_request
The WooCommerce woocommerce api request hook.
Description
Parameters (1)
- 0. $api_request (unknown)
- The api request.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'woocommerce_api_request', $api_request );
- The following example is for adding a hook callback.
- // define the woocommerce_api_request callback
- function action_woocommerce_api_request( $api_request ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'woocommerce_api_request', 'action_woocommerce_api_request', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'woocommerce_api_request', 'action_woocommerce_api_request', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /includes/class-wc-api.php
- do_action( 'woocommerce_api_request', $api_request );