cart-updated.php
5 months ago
checkout-created.php
5 months ago
order-updated.php
5 months ago
product-created.php
5 months ago
product-deleted.php
5 months ago
product-updated.php
5 months ago
cart-updated.php
19 lines
| 1 | <?php |
| 2 | /** |
| 3 | * BrandAgent Cart Updated Webhook Configuration |
| 4 | * |
| 5 | * Custom webhook for tracking cart add/remove/update events |
| 6 | * |
| 7 | * @package MicrosoftClarity |
| 8 | * @since 0.10.21 |
| 9 | */ |
| 10 | |
| 11 | // Exit if accessed directly |
| 12 | defined( 'ABSPATH' ) || exit; |
| 13 | |
| 14 | return array( |
| 15 | 'name' => 'BrandAgent Cart Updated', |
| 16 | 'topic' => 'cart.updated', |
| 17 | 'endpoint' => BRANDAGENT_WEBHOOK_BASE_URL . 'cart/updated', |
| 18 | ); |
| 19 |