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":"3e8a7309-f622-4500-9afd-0a5c764033b7","start_date":"2025-12-15","end_date":"2025-12-22","filter.include_inactive":false}'
Request examples
{
"model_type": "account",
"model_uuid": "3e8a7309-f622-4500-9afd-0a5c764033b7",
"start_date": "2025-12-15",
"end_date": "2025-12-22",
"filter.include_inactive": false
}
Response examples (401)
{
"message": "Unauthenticated."
}