Image Description Image Description

No Results

  • Support
Logo Logo v1.0
  • Basics
  • Getting started
  • Get authenticating user
  • Products
  • Create a Product
  • License Keys
  • Verify a License Key
  • Redeem a License Key
  • Refund a License Key
  • Subscriptions
  • Verify a Subscription
  • Webhooks
  • Basics
  • Subscribe
  • Unsubscribe
  • Webhook Events
  • New sale
  • New lead
  • New affiliate sign-up
  • New subscription
  • Subscription cancellation

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,
        "commission_amount": 50.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"
                    ]
                }
            ]
        }
    }
}