Get all Actions belonging to an account
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": "9e012f44-f580-4f8c-a902-b9c3d7d57ad5",
"title": "Signature Request",
"resource": {
"uuid": "994d250c-9ac9-4d6c-8fc0-cfa3adf3a1d5",
"schema": "App\\Http\\Resources\\FactFind\\FactFindSchemaResource",
"status": "complete",
"account": "App\\Http\\Resources\\MinimalAccountResource",
"created_at": "2025-10-08T10:40:17+01:00",
"updated_at": "2025-10-08T10:40:17+01:00",
"latest_file": "App\\Http\\Resources\\FileResource",
"completed_at": "2025-10-03T10:40:17+01:00",
"invitation_url": "https://api.plannrcrm.com/fact-find/a645ccce-0b6a-4f74-a6ae-7e2e9644f444/16decb6a-bbe9-4370-808b-f7f0c8035760",
"invitation_text": "Please complete this fact-find!",
"fact_find_passes": "App\\Http\\Resources\\FactFindPassResource"
},
"created_at": "2025-10-08T10:40:17+01:00",
"description": "Invited to complete the action item",
"is_completed": "true"
}
]
}