Body
-
The model type. Can be: account, plan, or circle.
-
The model UUID
-
Filter them down by choosing the start date. This will return all fluxes between the start and end date.
-
Filter them down by choosing the end date.
-
Include transactions from inactive plans. When true, only transactions that occurred before the plan became inactive are included.
GET
/api/v2/flux
curl \
--request GET 'https://api.plannrcrm.com/api/v2/flux' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"model_type":"account","model_uuid":"ef3dc579-20be-498b-b42a-a8efd83d422c","start_date":"2026-01-07","end_date":"2026-01-14","filter.include_inactive":false}'
Request examples
{
"model_type": "account",
"model_uuid": "ef3dc579-20be-498b-b42a-a8efd83d422c",
"start_date": "2026-01-07",
"end_date": "2026-01-14",
"filter.include_inactive": false
}
Response examples (401)
{
"message": "Unauthenticated."
}