You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What problem would you like to solve? Please describe:
We would like the option to provide a bearer token with the webhook contact method. This would allow us to authenticate the POST request that is made from the webhook in our backend service.
Describe the solution you'd like:
We would like the option to provide a bearer token with the webhook contact method.
Describe alternatives you've considered:
We need to communicate between the two applications. GoAlerts and our service. We considered using a direct database hook but that would not be efficient.
The text was updated successfully, but these errors were encountered:
basic auth https://<user>:<token>@example.com/api (user could be blank/unused)
The latter will result in the token being passed in the Authorization header but in the Basic format instead of Bearer. Both would allow you to authenticate requests, however.
What problem would you like to solve? Please describe:
We would like the option to provide a bearer token with the webhook contact method. This would allow us to authenticate the POST request that is made from the webhook in our backend service.
Describe the solution you'd like:
We would like the option to provide a bearer token with the webhook contact method.
Describe alternatives you've considered:
We need to communicate between the two applications. GoAlerts and our service. We considered using a direct database hook but that would not be efficient.
The text was updated successfully, but these errors were encountered: