Skip to content

Commit 69289dc

Browse files
authored
Fix minor phrasing issues in webhooks documentation
1 parent 439b07f commit 69289dc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/features/webhooks.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ sidebar_position: 11
44

55
# Webhooks
66

7-
Workflow provides webhooks that allow external systems to start workflows and send signals dynamically. This feature enables seamless integration with external services, APIs, and automation tools.
7+
The framework provides webhooks that allow external systems to start workflows and send signals dynamically. This feature enables seamless integration with external services, APIs, and automation tools.
88

99
## Enabling Webhooks
10-
To enable webhooks in Workflow, register the webhook routes in your application’s routes file (`routes/web.php` or `routes/api.php`):
10+
To enable webhooks, register the webhook routes in your application’s routes file (`routes/web.php` or `routes/api.php`):
1111

1212
```php
1313
use Workflow\Webhooks;
@@ -112,7 +112,7 @@ By default, webhooks don't require authentication, but you can configure one of
112112
**Important:** If webhook URLs are shared with external parties or exposed publicly, enable authentication (token or HMAC signature) to prevent unauthorized access.
113113

114114
### Authentication Methods
115-
Workflow supports:
115+
It supports:
116116
1. No Authentication (none)
117117
2. Token-based Authentication (token)
118118
3. HMAC Signature Verification (signature)
@@ -130,7 +130,7 @@ curl -X POST "https://example.com/webhooks/start/order-workflow" \
130130
```
131131

132132
### HMAC Signature Authentication
133-
For HMAC authentication, Workflow verifies requests using a secret key. The default header is `X-Signature` but this can also be changed.
133+
For HMAC authentication, it verifies requests using a secret key. The default header is `X-Signature` but this can also be changed.
134134

135135
#### Example Request
136136
```bash

0 commit comments

Comments
 (0)