2024-07-09 16:46:05 +02:00
|
|
|
# Zulip Stripe integration
|
|
|
|
|
2018-04-17 04:47:17 +02:00
|
|
|
Get Zulip notifications for Stripe events!
|
2017-06-14 05:03:46 +02:00
|
|
|
|
2024-07-18 03:25:18 +02:00
|
|
|
{% if 'http:' in external_url_scheme %}
|
|
|
|
|
|
|
|
!!! tip ""
|
|
|
|
|
|
|
|
Stripe will only send webhook payloads over HTTPS, but your Zulip
|
|
|
|
server is configured to only accept HTTP. To use the Stripe
|
|
|
|
webhook with this Zulip server, you will need to use a tunneling
|
|
|
|
service like ngrok or Ultrahook.
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
2024-07-09 16:46:05 +02:00
|
|
|
{start_tabs}
|
|
|
|
|
2024-05-05 22:30:09 +02:00
|
|
|
1. {!create-channel.md!}
|
2017-06-14 05:03:46 +02:00
|
|
|
|
2023-09-21 02:23:45 +02:00
|
|
|
1. {!create-an-incoming-webhook.md!}
|
|
|
|
|
2024-07-09 16:46:05 +02:00
|
|
|
1. {!generate-webhook-url-basic.md!}
|
2017-06-14 05:03:46 +02:00
|
|
|
|
2024-07-09 16:46:05 +02:00
|
|
|
1. On your Stripe Dashboard, select **Developers** on the left
|
|
|
|
sidebar. Select **Webhooks**, and click on **+ Add endpoint**.
|
2017-06-14 05:03:46 +02:00
|
|
|
|
2024-07-09 16:46:05 +02:00
|
|
|
1. Set the **URL to be called** to the URL generated above. Select the
|
|
|
|
[event types](#filtering-incoming-events) you would like to be notified
|
|
|
|
about, and click **Add endpoint**.
|
2017-06-14 05:03:46 +02:00
|
|
|
|
2024-07-09 16:46:05 +02:00
|
|
|
1. [Add a new linkifier](/help/add-a-custom-linkifier) in your Zulip
|
|
|
|
organization. Set the pattern to `(?P<id>cus_[0-9a-zA-Z]+)` and the URL
|
|
|
|
template to `https://dashboard.stripe.com/customers/{id}`. This step
|
|
|
|
creates links to Stripe customers in Zulip messages and topics.
|
2018-04-17 04:47:17 +02:00
|
|
|
|
2024-07-09 16:46:05 +02:00
|
|
|
{end_tabs}
|
|
|
|
|
2018-04-17 04:47:17 +02:00
|
|
|
{!congrats.md!}
|
|
|
|
|
|
|
|
![](/static/images/integrations/stripe/001.png)
|
2024-07-09 16:46:05 +02:00
|
|
|
|
|
|
|
{!event-filtering-additional-feature.md!}
|
|
|
|
|
|
|
|
### Related documentation
|
|
|
|
|
|
|
|
{!webhooks-url-specification.md!}
|