Shared
Shared webhooks are not very common. They are used when the external service requires you to register a single URL for all events, for all users.
Implementation
Matching the user's account with an incoming event
{
...
"info": {
"url": "https://example.com/api/me",
"headers": {
"authorization": "Bearer {{connection.accessToken}}"
},
"response": {
"uid": "{{body.user.id}}",
"valid": "{{body.ok}}",
"metadata": {
"type": "text",
"value": "{{body.user.fullName}} ({{body.user.email}})"
}
},
"log": {
"sanitize": [
"request.headers.authorization"
]
}
}
...
}Last updated

