Django WebHooks for Phaxio callbacks.
Simply install the latest stable package using the command
pip install django-phaxio
add 'django_phaxio',
to INSTALLED_APP
s in your settings.py
and add
path('phaxio/', include('django_phaxio.urls', namespace='phaxio')),
to your urlpatterns
in your URL root configuration.
You will also need to set the Phaxio callback token for security.
PHAXIO_CALLBACK_TOKEN
(required):
Callback token provided by Phaxio to verify the request origin.
See https://www.phaxio.com/docs/security/callbacks
The latest documentation can be found at Read the Docs.
Please read the Contributing Guide before you submit a pull request.