Flow Myna API Docs
Send process mining events to Flow Myna from your applications, ETL pipelines, and integrations. Our API uses clear, intuitive naming to make integration straightforward.
Base URL: https://api.flowmyna.com/v1/
OpenAPI Spec: https://api.flowmyna.com/openapi.json
Import into Postman or use for client library generation
Overview
The Flow Myna Public API allows external systems to send process mining events programmatically. Each API key is linked to a specific dataset, so you don't need to specify where your data goes — it's determined by which API key you use.
Quick Example
Here's how simple it is to record an event:
Record an Event
curl -X POST 'https://api.flowmyna.com/v1/event' \
-H 'Authorization: Bearer fm_live_your_key_here' \
-H 'Content-Type: application/json' \
-d '{
"event": "Order Placed",
"objects": [
{"type": "Order", "id": "ORD-123"},
{"type": "Customer", "id": "CUST-456"}
],
"properties": {
"total": 149.99,
"items_count": 3
}
}'Endpoints
Explore our API endpoints to integrate Flow Myna into your workflow:
Record Event
Record process events with associated objects
Upsert Object
Create or update objects with properties
Batch Operations
Send multiple events or objects in a single request
Authentication
Learn how to authenticate your API requests
Resources
Getting Started
To start sending events to Flow Myna:
- 1. Create an API Key — Go to Workspace → Data → API Keys
- 2. Choose a Dataset — Create new or select existing
- 3. Save Your Key — It's only shown once!
- 4. Start Sending Events — Use our SDKs or HTTP API