Get all Actions belonging to an account
Get all related actions for the referenced account uuid (see header)
Headers
-
Content-Type
string -
Accept
string -
X-PLANNR-ACCOUNT-UUID
string
Query parameters
-
filter[completed]
string affects whether to include actions which have been completed. Valid options are "exclude", "include", "only". (default: "exclude")
-
sort
string Field to sort by. Valid fields are [created_at, updated_at]. Negative sign to denote DESC. Defaults to '-created_at'.
-
per_page
integer 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 {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"data": [
{
"type": "fact_find_request",
"uuid": "498cee0f-67de-4db3-87af-42df7d853195",
"title": "Signature Request",
"resource": {
"uuid": "54d15fdd-e371-4748-a0e5-df6b96e0bbe3",
"schema": "App\\Http\\Resources\\FactFind\\FactFindSchemaResource",
"status": "complete",
"account": "App\\Http\\Resources\\MinimalAccountResource",
"created_at": "2025-06-05T11:39:43+01:00",
"updated_at": "2025-06-05T11:39:43+01:00",
"latest_file": "App\\Http\\Resources\\FileResource",
"completed_at": "2025-05-31T11:39:43+01:00",
"invitation_url": "https://plannr.valet/fact-find/f301474b-9297-40da-bc4b-3bdebe9225e9/c3b88290-76bf-4d44-a93c-53e36b33afb9",
"invitation_text": "Please complete this fact-find!",
"fact_find_passes": "App\\Http\\Resources\\FactFindPassResource"
},
"created_at": "2025-06-05T11:39:43+01:00",
"description": "Invited to complete the action item",
"is_completed": "true"
}
]
}