Feature Request β REST API Endpoint for Creating Order Activity Entries
I'm building a custom LMS integration where course enrollment is handled by an external automation (n8n). When an order is paid, a webhook fires to n8n which creates a JetEngine enrollment record via the WordPress REST API. I want to write the enrollment result back to the order as a structured Activity entry so the store admin has an audit trail directly on the order screen.
The Notes endpoint (/wp-json/fluent-cart/v2/notes/attach) works as a workaround but the UI is a single unformatted text box β not suitable for structured status entries.
The Activity model is documented at dev.fluentcart.com/database/models/activity and has exactly the right structure β status, title, content, module_id, module_type, created_by. I'm currently calling it via a custom PHP REST endpoint as a workaround:
FluentCart\App\Models\Activity::create([...])
Request: A first-class POST /wp-json/fluent-cart/v2/activities endpoint mapping directly to the Activity model's create() method, following the same auth pattern as existing endpoints. This would allow external automations to write structured activity entries to orders without requiring custom PHP.
Is this on the roadmap?

Noted.
