Get all Actions belonging to an account Run in API Explorer
Ask AI
Get all related actions for the referenced account uuid (see header)
Query parameters
-
affects whether to include actions which have been completed. Valid options are "exclude", "include", "only". (default: "exclude")
-
Field to sort by. Valid fields are [created_at, updated_at]. Negative sign to denote DESC. Defaults to '-created_at'.
-
Number of results to return with pagination (Default 15. Max 500).
GET
/api/v2/portal/actions
curl \
--request GET 'https://api.plannrcrm.com/api/v2/portal/actions' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"data": [
[
{
"type": "fact_find_request",
"uuid": "6317ab3a-b733-41f0-98a5-84f35b91212d",
"title": "Signature Request",
"resource": {
"uuid": "2b93be5d-67d9-4064-98ac-07f43619eb4c",
"schema": "App\\Http\\Resources\\FactFind\\FactFindSchemaResource",
"status": "complete",
"account": "App\\Http\\Resources\\MinimalAccountResource",
"created_at": "2026-02-10T15:18:36+00:00",
"updated_at": "2026-02-10T15:18:36+00:00",
"latest_file": "App\\Http\\Resources\\FileResource",
"completed_at": "2026-02-05T15:18:36+00:00",
"invitation_url": "https://api.plannrcrm.com/fact-find/f3f3fe94-3d26-41d2-80bb-9e83b4afdf32/7c7fc977-c33f-4852-9e18-24df639f03be",
"invitation_text": "Please complete this fact-find!",
"fact_find_passes": "App\\Http\\Resources\\FactFindPassResource"
},
"created_at": "2026-02-10T15:18:36+00:00",
"description": "Invited to complete the action item",
"is_completed": "true"
}
]
]
}