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": "98715555-69db-43b4-8636-0cab6e7a1225",
"title": "Signature Request",
"description": "Invited to complete the action item",
"type": "fact_find_request",
"is_completed": "true",
"resource": {
"uuid": "cf83ee7e-3508-4f37-ae2e-fc13bf150877",
"created_at": "2026-09-17T15:11:01+01:00",
"updated_at": "2026-09-17T15:11:01+01:00",
"status": "complete",
"completed_at": "2026-09-12T15:11:01+01:00",
"invitation_text": "Please complete this fact find!",
"schema": {
"uuid": "a87af19e-de26-4dc4-a3aa-51bc6e1fdfc7",
"created_at": "2026-09-17T15:11:06+01:00",
"updated_at": "2026-09-17T15:11:06+01:00",
"archived_at": "2026-09-16T15:11:06+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/1ea95b23-9af2-470f-9ad8-24738452d9b9"
},
"latest_file": {
"uuid": "417e5f1b-b145-4f0d-85b0-88a5495ff440",
"created_at": "2026-09-17T15:11:06+01:00",
"original_created_at": "2026-09-17T15:11:06+01:00",
"updated_at": "2026-09-17T15:11:06+01:00",
"uploaded_at": "2026-09-17T15:11:06+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-09-17T15:11:06+01:00",
"progress": "100",
"download_url": "https://api.plannrcrm.com/file/dcf60b1d-0b73-4777-b793-18b12d722b80/download",
"preview_url": "https://api.plannrcrm.com/file/703a3880-1d38-4806-bcfb-e55c8982036a/preview",
"folder_name": "folder 2",
"documentable_type": "account",
"documentable": "Object",
"navigator": {
"model_type": "account",
"model_uuid": null
}
},
"account": {
"uuid": "b2ec423c-0b59-4cd5-b1d4-c26377469036",
"created_at": "2026-09-17T15:11:06+01:00",
"updated_at": "2026-09-17T15:11:06+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/ace486d6-f0e8-4d21-a4ed-1253bde4fa59/377559c1-cbfc-4e6d-89cf-1174887900f6",
"fact_find_passes": {
"uuid": "ef30af53-5765-4d45-9e1d-5c012bdc70cc",
"created_at": "2026-09-17T15:11:06+01:00",
"updated_at": "2026-09-17T15:11:06+01:00",
"firm": {
"uuid": null,
"name": "Codepotato Ltd"
},
"circle": {
"uuid": null,
"name": "The Codepotato Gang"
},
"expires_at": "2026-09-17T15:11:06+01:00",
"progress": 50,
"is_complete": false,
"completed_sections": 2
}
},
"created_at": "2026-09-17T15:11:01+01:00"
}
]
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}