List the clients blocking edits to this template. Run in API Explorer
Ask AI
Returns one row per distinct account with at least one active session
against this template, so John Smith with three in-flight sessions
appears once with active_session_count: 3 rather than three duplicate
rows. Circle sessions naturally expand to one row per attached account.
Query parameters
-
Filter by a comma separated list of account UUIDs.
-
Filter by account name. Partial match against first_name, last_name and entity_name.
-
Field to sort by. Valid fields are [latest_session_updated_at, active_session_count, first_name, last_name]. Negative sign to denote DESC. Defaults to '-latest_session_updated_at'.
-
Number of results per page (default 15).
GET
/api/v2/fact-find/templates/{factFindTemplate_uuid}/active-sessions
curl \
--request GET 'https://api.plannrcrm.com/api/v2/fact-find/templates/6ff8f7f6-1eb3-3525-be4a-3932c805afed/active-sessions' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"data": [
[
{
"account_uuid": "a88e386b-3d36-4c9f-be1a-e1407c1a5d28",
"account_name": "John Smith",
"active_session_count": 3,
"latest_session_updated_at": "2026-05-07T20:15:00+00:00"
}
]
]
}