We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bef7f6 commit 4b1fbf6Copy full SHA for 4b1fbf6
docs/features/webhooks.md
@@ -150,11 +150,11 @@ curl -X POST "https://example.com/webhooks/start/order-workflow" \
150
By default, webhooks are accessible under `/webhooks`. You can customize the route path in `config/workflows.php`:
151
152
```php
153
-'webhooks_route' => 'api/webhooks',
+'webhooks_route' => 'workflows',
154
```
155
156
After this change, webhooks will be accessible under:
157
158
-POST /api/webhooks/start/order-workflow
159
-POST /api/webhooks/signal/order-workflow/{workflowId}/mark-as-shipped
+POST /workflows/start/order-workflow
+POST /workflows/signal/order-workflow/{workflowId}/mark-as-shipped
160
0 commit comments