woocommerce_rest_insert_(post_type)_object action-hookWC 1.0

Fires after a single object is created or updated via the REST API.

Usage

add_action( 'woocommerce_rest_insert_(post_type)_object', 'wp_kama_woocommerce_rest_insert_post_type_object_action', 10, 3 );

/**
 * Function for `woocommerce_rest_insert_(post_type)_object` action-hook.
 * 
 * @param WC_Data         $object   Inserted object.
 * @param WP_REST_Request $request  Request object.
 * @param boolean         $creating True when creating object, false when updating.
 *
 * @return void
 */
function wp_kama_woocommerce_rest_insert_post_type_object_action( $object, $request, $creating ){

	// action...
}
$object(WC_Data)
Inserted object.
$request(WP_REST_Request)
Request object.
$creating(true|false)
True when creating object, false when updating.

Where the hook is called

WC_REST_CRUD_Controller::create_item()
woocommerce_rest_insert_(post_type)_object
WC_REST_CRUD_Controller::update_item()
woocommerce_rest_insert_(post_type)_object
woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-crud-controller.php 207
do_action( "woocommerce_rest_insert_{$this->post_type}_object", $object, $request, true );
woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-crud-controller.php 254
do_action( "woocommerce_rest_insert_{$this->post_type}_object", $object, $request, false );

Where the hook is used in WooCommerce

woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-products-v2-controller.php 55
add_action( "woocommerce_rest_insert_{$this->post_type}_object", array( $this, 'clear_transients' ) );