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": "ae2aaac8-e148-42ae-9db0-e87a7638b9d7",
"title": "Signature Request",
"resource": {
"uuid": "2be9d5b3-63a4-4af2-ae82-d7abe1370fd2",
"schema": "App\\Http\\Resources\\FactFind\\FactFindSchemaResource",
"status": "complete",
"account": "App\\Http\\Resources\\MinimalAccountResource",
"created_at": "2025-10-24T10:34:20+01:00",
"updated_at": "2025-10-24T10:34:20+01:00",
"latest_file": "App\\Http\\Resources\\FileResource",
"completed_at": "2025-10-19T10:34:20+01:00",
"invitation_url": "https://api.plannrcrm.com/fact-find/e83ecb99-8654-4d91-b62a-7056509ddc73/6994b635-7cc6-407e-99f2-4f8c6b8b92b5",
"invitation_text": "Please complete this fact-find!",
"fact_find_passes": "App\\Http\\Resources\\FactFindPassResource"
},
"created_at": "2025-10-24T10:34:20+01:00",
"description": "Invited to complete the action item",
"is_completed": "true"
}
]
}