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": "dced58d8-5fa8-40d5-915d-80758ca78d50",
"title": "Signature Request",
"description": "Invited to complete the action item",
"type": "fact_find_request",
"is_completed": "true",
"resource": {
"uuid": "d8c9b947-f74f-496c-9021-20ad03a31981",
"created_at": "2026-08-07T15:29:27+01:00",
"updated_at": "2026-08-07T15:29:27+01:00",
"status": "complete",
"completed_at": "2026-08-02T15:29:27+01:00",
"invitation_text": "Please complete this fact find!",
"schema": {
"uuid": "a5256c9e-ce35-411c-8101-81823377ff1a",
"created_at": "2026-08-07T15:29:31+01:00",
"updated_at": "2026-08-07T15:29:31+01:00",
"archived_at": "2026-08-06T15:29:31+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/ccb0b523-9609-43b8-b30e-a32a3689eaee"
},
"latest_file": {
"uuid": "065426b5-c64d-4782-ba3b-e4b2747e1dd4",
"created_at": "2026-08-07T15:29:31+01:00",
"original_created_at": "2026-08-07T15:29:31+01:00",
"updated_at": "2026-08-07T15:29:31+01:00",
"uploaded_at": "2026-08-07T15:29:31+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-08-07T15:29:31+01:00",
"progress": "100",
"download_url": "https://api.plannrcrm.com/file/ab808746-1eeb-436a-b76d-ff2b4fd7b19b/download",
"folder_name": "folder 2",
"documentable_type": "account",
"documentable": "Object",
"navigator": {
"model_type": "account",
"model_uuid": null
}
},
"account": {
"uuid": "15dfe039-893e-4ddc-b0fd-8309bd154547",
"created_at": "2026-08-07T15:29:31+01:00",
"updated_at": "2026-08-07T15:29:31+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/c5f96134-1ef6-4c0f-89ac-e5d3c6ff13ef/b0b5084a-0b69-4560-883e-f7e11507c3a0",
"fact_find_passes": {
"uuid": "a4dfa17c-d3b4-4cb9-98e9-a60cc079a02a",
"created_at": "2026-08-07T15:29:31+01:00",
"updated_at": "2026-08-07T15:29:31+01:00",
"firm": {
"uuid": null,
"name": "Codepotato Ltd"
},
"circle": {
"uuid": null,
"name": "The Codepotato Gang"
},
"expires_at": "2026-08-07T15:29:31+01:00",
"progress": 50,
"is_complete": false,
"completed_sections": 2
}
},
"created_at": "2026-08-07T15:29:27+01:00"
}
]
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}