Supporters
Webhook events available for Supporters
Created
Event
This event is POST'd when a new supporter
is created.
Payload
{
"supporters": [
{
"id": 1,
"active": false,
"first_name": "Zella",
"last_name": "Durgan",
"email": "zella.durgan@example.com",
"type": null,
"email_opt_in": false,
"vendor_contact_id": null,
"billing_address": {
"first_name": "Zella",
"last_name": "Durgan",
"company": null,
"email": "zella.durgan@example.com",
"address1": "56 E Morehead St",
"address2": null,
"city": "Laredo",
"state": "TX",
"zip": "78045",
"country": "US",
"phone": "+1.438.799.6684"
},
"shipping_address": {
"first_name": "Zella",
"last_name": "Durgan",
"company": null,
"email": "zella.durgan@example.com",
"address1": "56 E Morehead St",
"address2": null,
"city": "Laredo",
"state": "TX",
"zip": "78045",
"country": "US",
"phone": "+1.438.799.6684"
},
"created_at": "2020-06-01 12:00:00 UTC",
"updated_at": "2020-06-01 12:00:00 UTC"
}
]
}
Updated
Event
This event is POST'd when a new supporter
is updated.
Payload
Same payload as in supporter_created
:
{
"supporters": [
{
"id": 1,
"active": false,
"first_name": "Zella",
"last_name": "Durgan",
"email": "zella.durgan@example.com",
"type": null,
"email_opt_in": false,
"vendor_contact_id": null,
"billing_address": {
"first_name": "Zella",
"last_name": "Durgan",
"company": null,
"email": "zella.durgan@example.com",
"address1": "56 E Morehead St",
"address2": null,
"city": "Laredo",
"state": "TX",
"zip": "78045",
"country": "US",
"phone": "+1.438.799.6684"
},
"shipping_address": {
"first_name": "Zella",
"last_name": "Durgan",
"company": null,
"email": "zella.durgan@example.com",
"address1": "56 E Morehead St",
"address2": null,
"city": "Laredo",
"state": "TX",
"zip": "78045",
"country": "US",
"phone": "+1.438.799.6684"
},
"created_at": "2020-06-01 12:00:00 UTC",
"updated_at": "2020-06-01 12:00:00 UTC"
}
]
}