Get flow info
Ⓔ Enterprise Only
This API is available exclusively in Countly Enterprise.
Endpoint
/o/flows?method=info
Overview
Returns full schema details for a single flow.
Authentication
Countly API supports three authentication methods:
- API key query parameter:
api_key=YOUR_API_KEY - Auth token query parameter:
auth_token=YOUR_AUTH_TOKEN - Auth token header:
countly-token: YOUR_AUTH_TOKEN
Permissions
Requires flows Read permission.
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
method | String | Yes | Must be info. |
app_id | String | Yes | Target app ID. |
_id | String | Yes | Flow ID. |
api_key | String | Conditional | Required if auth_token is not provided. |
auth_token | String | Conditional | Required if api_key is not provided. |
Response
Success Response
{
"_id": "64f5c0d8f4f7ac0012ab3456_67bd31c92e7f0b0012ab4567",
"name": "Signup to Purchase",
"type": "events",
"status": "new",
"memberData": {
"full_name": "Jane Doe"
}
}
Response Fields
| Field | Type | Description |
|---|---|---|
(root object) | Object | Flow schema plus creator name subset. |
memberData.full_name | String | Creator display name when available. |
Error Responses
400
{
"result": "Flow not found"
}
Behavior/Processing
- Reads flow by
_id+app_id. - Joins creator info from
members. - Parses
user_segmentationJSON string. - Cleans quoted
periodstrings.
Database Collections
| Collection | Used for | Data touched by this endpoint |
|---|---|---|
countly.flow_schemas | Endpoint data source | Stores endpoint-related records this endpoint reads or modifies. |
countly.members | Member/account enrichment | Stores member profile fields (for example names/IDs) used to resolve actor metadata. |
Examples
/o/flows?
method=info&
app_id=64f5c0d8f4f7ac0012ab3456&
_id=64f5c0d8f4f7ac0012ab3456_67bd31c92e7f0b0012ab4567
Related Endpoints
Last Updated
2026-02-16