{% extends "zerver/portico.html" %} {% set entrypoint = "integrations" %} {% block customhead %} {% endblock %} {% block hello_page_container %} hello-main{% endblock %} {% block portico_content %} {% include 'zerver/landing_nav.html' %} {% include 'zerver/gradients.html' %}

{% trans %}Over {{integrations_count_display}} native integrations.{% endtrans %}

{% trans %} And hundreds more through Zapier and IFTTT. {% endtrans %}

{% trans %}Categories{% endtrans %}

{% trans %}All{% endtrans %}

{% for category in categories_dict.keys() %}

{{ categories_dict[category] }}

{% endfor %}

{% trans %}Custom integrations{% endtrans %}

{% trans %}Incoming webhooks{% endtrans %}

{% trans %}Interactive bots{% endtrans %}

{% trans %}REST API{% endtrans %}

{% for integration in integrations_dict.values() %} {% if integration.is_enabled() %}
{% if integration.secondary_line_text %}

{{ integration.display_name }}

{{ integration.secondary_line_text }}

{% else %}

{{ integration.display_name }}

{% endif %}

{{ integration.categories[0] }}

{% endif %} {% endfor %}

Don't see an integration you need? We'd love to help.

Create your own or Request an integration
{% for integration in integrations_dict.values() %} {% if integration.is_enabled() %}

Logos are trademarks of their respective owners. None of the integrations on this page are created by, affiliated with, or supported by the companies represented by the logos.

{% endif %} {% endfor %}
{% endblock %}