Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions articles/Extensibility/docs/development/Webhooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Example of a `webhooks` property in the app descriptor:
"webhooks": [
{
"url": "/webhooks-endpoint",
"evenTypes": [
"eventTypes": [
{
"eventType": "PROJECT.TASK.ACCEPTED"
},
Expand Down Expand Up @@ -53,4 +53,4 @@ Webhooks are grouped in batches by callback URL, so it is likely that events fro

## Signature Validation

Unlike webhooks created in the UI through the Applications, webhooks that are declared in the descriptor are received using app signature. The endpoint that receives the webhook should treat these as signed with JWS, just as any other endpoint in the app. See [Request Authentication](Request-Authentication.md) page for more details.
Unlike webhooks created in the UI through the Applications, webhooks that are declared in the descriptor are received using app signature. The endpoint that receives the webhook should treat these as signed with JWS, just as any other endpoint in the app. See [Request Authentication](Request-Authentication.md) page for more details.
Loading