We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
Currently webhook events are received at /events and the channel name is present as a query parameter in the URL.
webhook events
/events
channel name
query parameter
Query parameters are generally used for optional parameters. So, we want to switch to path parameters.
path parameters
Webhook events should be received at /events/<channel-name>.So, the channel name will be present as path parameter instead.
/events/<channel-name>
path parameter
Note
The query parameter option will still be available for backwards compatibility, but it'll be marked as deprecated.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
No description provided.
The text was updated successfully, but these errors were encountered: