Skip to content

A simple example of an API that will handle a Fivetran Webhook request

Notifications You must be signed in to change notification settings

jwilson232/fivetran-webook-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fivetran Webhook Example

To run locally:

python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python __init__.py

To test generate a request body and headers using the generate.py file (after replacing the password variable). With the body and header we can curl the endpoint locally:

curl -XPOST -H 'X-Fivetran-Signature-256: {generated-header}' -H 'Content-Type: application/json' -d '{generated-body}' 'http://127.0.0.1:8000'

After visiting http://127.0.0.1:8000 in a browser we should see:

Sync end event

About

A simple example of an API that will handle a Fivetran Webhook request

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages