application/json

Body

  • model_type string Required

    The model type. Can be: account, plan, or circle.

  • model_uuid string(uuid) Required

    The model UUID

  • start_date string(date) Required

    Filter them down by choosing the start date. This will return all fluxes between the start and end date.

  • end_date string(date) Required

    Filter them down by choosing the end date.

  • filter.include_inactive boolean

    Include transactions from inactive plans. When true, only transactions that occurred before the plan became inactive are included.

Responses

  • 401 application/json
    Hide response attribute Show response attribute object
    • message string
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."
}