Product_Update_Webhook

Summary

Class Product_Update_Webhook


Description

Sets up the webhook that runs on product update.


Source

File: src/BigCommerce/Webhooks/Product_Update_Webhook.php

class Product_Update_Webhook extends Webhook {
	const SCOPE  = 'store/product/updated';
	const NAME   = 'product_update';

    /**
     * Fires when a product has been updated in the BigCommerce store.
     *
     * @param array $request
     */
	public function trigger_action( $request ){
		/**
		 * Fires when a product has been updated in the BigCommerce store.
		 *
		 * @param int $product_id BigCommerce product ID.
		 */
		do_action( 'bigcommerce/webhooks/product_updated', ['product_id' => intval( $request['data']['id'] )] );
	}
}

Methods

  • trigger_action — Fires when a product has been updated in the BigCommerce store.

User Contributed Notes

You must log in before being able to contribute a note or feedback.