Webhook - New Affiliate Sign-Up Event
You may use webhook integrations to be notified in real-time of certain events that happen in your Zylvie store.
You specify your webhook URLs under Workflows > Add Workflow.
The "new affiliate sign-up" event is when an affiliate signs up as an affiliate or accepts your private invitation to be an affiliate.
Example event payload
{
"event": "affiliate",
"data": {
"accepted_at": "2025-03-23T03:12:35Z",
"affiliate": {
"username": "stavros.flatley",
"name": "Stavros Flatley",
"email": "stavros@greek.com"
},
"commission_percentage": 35.0,
"products": {
"allowed_for_all_products": false,
"allowed_products": [
{
"id": "R54wJ68y",
"title": "The Ultimate Business Book",
"price": 0.0,
"pricing_model": "one-time",
"is_variant": false,
"tags": [
"tag1",
"tag2",
"tag3"
]
}
]
}
}
}