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