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
checkout-created.php
19 lines
| 1 | <?php |
| 2 | /** |
| 3 | * BrandAgent Checkout Created Webhook Configuration |
| 4 | * |
| 5 | * Custom webhook for tracking when users navigate to the checkout page |
| 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 Checkout Created', |
| 16 | 'topic' => 'checkout.created', |
| 17 | 'endpoint' => BRANDAGENT_WEBHOOK_BASE_URL . 'checkout/created', |
| 18 | ); |
| 19 |