Prior to and post-FHL, the API team has been busy working on the Stripe integration and External Subscription Orders (One-time orders are already in private BETA).
In the meantime, we also had these noteworthy changes:
🪝 We have added a new orders/invoice.paid
webhook event. It's sent each time an invoice's status of a one-time or a subscription order becomes "paid", as opposed to the old subscription.invoice.paid
and one-time-order.invoice.paid
webhook events, which are only triggered for the specific order type.
🔌 Improvements to our native integrations and recent/upcoming launches: InvoiceNinja, Zendesk Sell, Splio, Reachout, Leadsquared, Zoom.
🎁 New affiliate-related fields in order and invoice payloads so you can get the relevant information about affiliations for an order on the spot:
// Order payload
{
"id": 28,
"public_id": "QJrlzj",
"order_number": "838615",
"workspace_id": 42000,
...
"affiliate": { // <--------------- 🎉
"name": "Josh Fancy",
"email": "[email protected]"
},
"referral_code": { // <--------------- 🎉
"code": "d473754c5567e94800c1d16ef4b3fb394b9cfe49f25c80f755226186c390740c",
"default": true
}
}
// Orders::Invoice payload
{
"id": 15,
"public_id": "PhTgJz",
"order_id": 37,
"status": "paid",
...
"order": {
"id": 37,
"public_id": "UVdqxS",
"order_number": "618883",
...
"affiliate": { // <--------------- 🎉
"name": "Josh Fancy",
"email": "[email protected]"
},
"referral_code": { // <--------------- 🎉
"code": "d473754c5567e94800c1d16ef4b3fb394b9cfe49f25c80f755226186c390740c",
"default": true
}
}
}
🤖 Improved Zapier embed as its own app in the ClickFunnels UI. You can now set up and manage zaps without leaving the ClickFunnels app.