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": "5e101872-b9ca-4a94-9a59-d1f78319fa99",
"title": "Signature Request",
"resource": {
"uuid": "24a198b9-05d6-4cce-a998-a08a040604c3",
"schema": "App\\Http\\Resources\\FactFind\\FactFindSchemaResource",
"status": "complete",
"account": "App\\Http\\Resources\\MinimalAccountResource",
"created_at": "2025-08-27T17:31:28+01:00",
"updated_at": "2025-08-27T17:31:28+01:00",
"latest_file": "App\\Http\\Resources\\FileResource",
"completed_at": "2025-08-22T17:31:28+01:00",
"invitation_url": "https://api.plannrcrm.com/fact-find/d0a79171-a16a-4ac0-bb22-ce48ee684885/ab1b6edc-9e78-4a31-afab-23203c1937e8",
"invitation_text": "Please complete this fact-find!",
"fact_find_passes": "App\\Http\\Resources\\FactFindPassResource"
},
"created_at": "2025-08-27T17:31:28+01:00",
"description": "Invited to complete the action item",
"is_completed": "true"
}
]
}