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": "00e8c654-d1f3-4b1d-94c3-215ebd3bb5d9",
"title": "Signature Request",
"resource": {
"uuid": "3d162e62-44a6-4ff9-998d-e532ceaea2df",
"schema": "App\\Http\\Resources\\FactFind\\FactFindSchemaResource",
"status": "complete",
"account": "App\\Http\\Resources\\MinimalAccountResource",
"created_at": "2025-09-17T15:46:54+01:00",
"updated_at": "2025-09-17T15:46:54+01:00",
"latest_file": "App\\Http\\Resources\\FileResource",
"completed_at": "2025-09-12T15:46:54+01:00",
"invitation_url": "https://api.plannrcrm.com/fact-find/da70020c-b373-4c6b-b18a-6ed271e9402a/9e493c8d-6a2f-4c28-b400-3f855f936f97",
"invitation_text": "Please complete this fact-find!",
"fact_find_passes": "App\\Http\\Resources\\FactFindPassResource"
},
"created_at": "2025-09-17T15:46:54+01:00",
"description": "Invited to complete the action item",
"is_completed": "true"
}
]
}