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

Folders and files

NameName
Last commit message
Last commit date
Jul 24, 2023
Apr 13, 2021
Nov 28, 2017
Apr 13, 2021
Apr 7, 2016
Mar 24, 2016
Apr 5, 2016
Nov 28, 2017
Apr 13, 2021
Apr 13, 2021
Apr 13, 2021
Apr 4, 2022
Apr 13, 2021
Nov 28, 2017
Apr 4, 2022

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.