Get all Actions belonging to an account Run in API Explorer
Ask AI
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": [
{
"uuid": "4ec439aa-3333-4b6e-919a-7792e8c4c566",
"title": "Signature Request",
"description": "Invited to complete the action item",
"type": "fact_find_request",
"is_completed": "true",
"resource": {
"uuid": "9e35988a-1978-418f-89c6-4de0b4616ef9",
"created_at": "2026-07-17T15:25:31+01:00",
"updated_at": "2026-07-17T15:25:31+01:00",
"status": "complete",
"completed_at": "2026-07-12T15:25:31+01:00",
"invitation_text": "Please complete this fact find!",
"schema": {
"uuid": "20dfb868-78dd-4dbe-9aaf-4ead85c0f525",
"created_at": "2026-07-17T15:25:36+01:00",
"updated_at": "2026-07-17T15:25:36+01:00",
"archived_at": "2026-07-16T15:25:36+01:00",
"is_archived": false,
"name": "Default fact find",
"introduction_html": "Welcome to our fact find! <b>You can use some HTML too.</b>",
"sections_count": 5,
"public_url": "https://api.plannrcrm.com/fact-find/f06616bc-ffc0-4018-9575-9cd0d466c560"
},
"latest_file": {
"uuid": "c4fdfaa9-f8da-41ef-b539-ca282ca6f4f4",
"created_at": "2026-07-17T15:25:36+01:00",
"original_created_at": "2026-07-17T15:25:36+01:00",
"updated_at": "2026-07-17T15:25:36+01:00",
"uploaded_at": "2026-07-17T15:25:36+01:00",
"status": "uploaded",
"filename": "Welcome to Plannr.pdf",
"name": "Welcome to Plannr",
"extension": "pdf",
"type": "type",
"size": "21691783",
"path": "Gareth Thompson/Subfolder/Welcome to Plannr.pdf",
"last_modified": "2026-07-17T15:25:36+01:00",
"progress": "100",
"download_url": "https://api.plannrcrm.com/file/27355e9b-34ac-4646-80f3-8a5a64900d68/download",
"folder_name": "folder 2",
"documentable_type": "account",
"documentable": "Object",
"navigator": {
"model_type": "account",
"model_uuid": null
}
},
"account": {
"uuid": "a93927b0-3b21-4af1-9f4f-15489a25a202",
"created_at": "2026-07-17T15:25:36+01:00",
"updated_at": "2026-07-17T15:25:36+01:00",
"type": "client",
"role": "client",
"first_name": "Gareth",
"last_name": "Thompson",
"name": "Gareth Thompson",
"email": "gareth@codepotato.co.uk",
"photo_url": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson"
},
"invitation_url": "https://api.plannrcrm.com/fact-find/fa5690f7-116b-49d6-9a6c-abea2ab1523b/6e9ad996-a7c9-4582-b02e-1ce6effbf54f",
"fact_find_passes": {
"uuid": "97377357-a7f1-4b50-9848-2a5a258a997b",
"created_at": "2026-07-17T15:25:36+01:00",
"updated_at": "2026-07-17T15:25:36+01:00",
"firm": {
"uuid": null,
"name": "Codepotato Ltd"
},
"circle": {
"uuid": null,
"name": "The Codepotato Gang"
},
"expires_at": "2026-07-17T15:25:36+01:00",
"progress": 50,
"is_complete": false,
"completed_sections": 2
}
},
"created_at": "2026-07-17T15:25:31+01:00"
}
]
}