Last active
December 24, 2015 10:29
-
-
Save derrickreimer/6784243 to your computer and use it in GitHub Desktop.
Drip - Subscriber Webhooks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"event": "subscriber.subscribed", | |
"data": { | |
"object": { | |
"id": 99999, | |
"email": "[email protected]", | |
"fields": { | |
"first_name": "John", | |
"last_name": "Doe" | |
}, | |
"visitor_uuid": "99f18900079701314c7a040cce1ee51a", | |
"double_optin": true, | |
"created_at": "2013-10-01T13:00:04-07:00" | |
} | |
} | |
} | |
{ | |
"event": "subscriber.unsubscribed", | |
"data": { | |
"object": { | |
"id": 99999, | |
"email": "[email protected]", | |
"fields": { | |
"first_name": "John", | |
"last_name": "Doe" | |
}, | |
"visitor_uuid": "99f18900079701314c7a040cce1ee51a", | |
"double_optin": true, | |
"created_at": "2013-10-01T13:00:04-07:00" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment