Skip to main content

Integrate Zendesk Support and your Django app

Project description

Integrate Zendesk Support into your Django app

Code style: black Codecov CircleCI

django-zengo

django-zengo is a Django app that provides conveniences for integrating with Zendesk.

It facilitates receiving webhook updates from Zendesk, detecting new tickets and changes to existing tickets.

Installation

pip install django-zengo

Usage

Configuring the webhook

Zengo comes with a view that processes messages sent by Zendesk and allows you to perform actions upon various Zendesk events.

Expose zengo.views.WebhookView

You need to configure your application to receive the webhook. To do so simply include it in your URL conf:

from django.contrib import admin
from django.urls import path

from zengo.views import WebhookView

urlpatterns = [
    path('admin/', admin.site.urls),
    path('zengo/webhook/', WebhookView.as_view())
]
Add required bits to settings.py

You need to tell Zengo how to authenticate with Zendesk:

  • ZENDESK_EMAIL is the email of the Zendesk account you will use to interact with the API.
  • ZENDESK_TOKEN generated for the user above in the Zendesk web interface.
  • ZENDESK_SUBDOMAIN must match the subdomain used in your Zendesk account.

As seen below, you need to specify And you need to set a shared secret so that the webhook view can trust incoming messages from Zendesk:

  • ZENGO_WEBHOOK_SECRET generated by your good self; make it long and random!

So, your settings should appear something along the lines of:

ZENDESK_EMAIL = "iamanemail@example.com"
ZENDESK_TOKEN = "<token-from-zendesk-webui>"
ZENDESK_SUBDOMAIN = "example"

ZENGO_WEBHOOK_SECRET = "<replace-me-with-a-great-password>"
Configure Zendesk to send events

Zendesk allows for many integrations, but for the purposes of Zengo we just need to be told when a ticket has been changed.

Log in as an administrator in Zendesk, and visit Settings > Extensions > Targets > add target > HTTP target.

Add an HTTP target with a URL of your service, and choose the POST method. Ensure you've added a secret query parameter to the URL where your webhook is accessible, such that the webhook view can authorize Zendesk's webhook sends.

Next, you must configure a trigger to use the target. Visit Business Rules > Triggers > Add trigger. Add a condition that suits your needs, such as, Ticket is updated, or Ticket is created, and select an action of Notify target, selecting the previously configured target. For JSON body, enter the following:

{
    "id": "{{ ticket.id }}"
}

You're done! Now whenever a ticket is created or updated in Zendesk, you should have an event being processed in your application.

Note: for development, I recommend using the excellent ngrok to proxy requests through to your localhost.

Performing actions upon receiving Zendesk events

When Zengo receives a webhook from Zendesk, it will fetch the latest state of the ticket from Zendesk's APIs, compare how this differs to the state in the local database models, and fire a signal indicating what has happened. In your application, you attach receivers to the signal that is most relevant to your need.

from django.dispatch import receiver

from zengo.signals import ticket_created


@receiver(ticket_created)
def handle_new_ticket(sender, ticket, context, **kwargs):
    # perform your custom action here
    pass

Signals

You can connect to the following signals.

  • zengo.signals.ticket_created - fires when a ticket is encountered for the first time.
  • zengo.signals.ticket_updated - fires when a ticket previously encountered is changed, or has a new comment added.

Contribute

django-zengo supports a variety of Python and Django versions. It's best if you test each one of these before committing. Our Circle CI Integration will test these when you push but knowing before you commit prevents from having to do a lot of extra commits to get the build to pass.

Environment Setup

In order to easily test on all these Pythons and run the exact same thing that CI will execute you'll want to setup pyenv and install the Python versions outlined in tox.ini.

If you are on Mac OS X, it's recommended you use brew. After installing brew run:

$ brew install pyenv pyenv-virtualenv pyenv-virtualenvwrapper

Then:

pyenv install -s 2.7.15
pyenv install -s 3.4.7
pyenv install -s 3.5.4
pyenv install -s 3.6.3
pyenv virtualenv 2.7.15
pyenv virtualenv 3.4.7
pyenv virtualenv 3.5.4
pyenv virtualenv 3.6.3
pyenv global 2.7.15 3.4.7 3.5.4 3.6.3
pip install detox

To run the test suite:

Make sure you are NOT inside a virtualenv and then:

$ detox

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-zengo-1.1.0.tar.gz (12.7 kB view details)

Uploaded Source

Built Distribution

django_zengo-1.1.0-py3-none-any.whl (16.2 kB view details)

Uploaded Python 3

File details

Details for the file django-zengo-1.1.0.tar.gz.

File metadata

  • Download URL: django-zengo-1.1.0.tar.gz
  • Upload date:
  • Size: 12.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.7.1

File hashes

Hashes for django-zengo-1.1.0.tar.gz
Algorithm Hash digest
SHA256 0d8b5085750c91f99bfd02ae956ee50e682839b31b22bab506ec3352cfd346f8
MD5 3ff4c7ec1984b8edcca7db235a05ca20
BLAKE2b-256 e72655c7bf3281cd2a779690a7f6fe5a08e27660230acadee0fa11870dc5731a

See more details on using hashes here.

File details

Details for the file django_zengo-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: django_zengo-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 16.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.7.1

File hashes

Hashes for django_zengo-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 53b40af0be4b264a51971bc57e4091f9a3b996a7101e5eeadfa8ebba3f4e6114
MD5 1721e2c91e7de84c9cc1a81cd6b14896
BLAKE2b-256 b069571aa865864bd901a1d9075df01dfc993f637114f55aa09ea224c5598d81

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page