Skip to content

Django integration of Phaxio Fax API and WebHooks

License

Notifications You must be signed in to change notification settings

thermondo/django-phaxio

Repository files navigation

version ci coverage license

Django Phaxio

Django WebHooks for Phaxio callbacks.

Installation

Simply install the latest stable package using the command

pip install django-phaxio

add 'django_phaxio', to INSTALLED_APPs 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

Documentation

The latest documentation can be found at Read the Docs.

Contribution

Please read the Contributing Guide before you submit a pull request.