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": "9da6c5c4-07e4-4599-a73f-cdf304e28dc0",
"title": "Signature Request",
"description": "Invited to complete the action item",
"type": "fact_find_request",
"is_completed": "true",
"resource": {
"uuid": "63d5e4b3-2c3c-4839-a9bd-36778c57538f",
"created_at": "2026-08-28T07:35:00+01:00",
"updated_at": "2026-08-28T07:35:00+01:00",
"status": "complete",
"completed_at": "2026-08-23T07:35:00+01:00",
"invitation_text": "Please complete this fact find!",
"schema": {
"uuid": "e396470b-41df-4507-8b6b-bcdb432c7012",
"created_at": "2026-08-28T07:35:05+01:00",
"updated_at": "2026-08-28T07:35:05+01:00",
"archived_at": "2026-08-27T07:35:05+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/70684f73-9aaf-49a0-8f91-6a5c999ba96a"
},
"latest_file": {
"uuid": "9f033bed-57d4-4fe7-b443-66f69e1ff7d2",
"created_at": "2026-08-28T07:35:05+01:00",
"original_created_at": "2026-08-28T07:35:05+01:00",
"updated_at": "2026-08-28T07:35:05+01:00",
"uploaded_at": "2026-08-28T07:35:05+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-28T07:35:05+01:00",
"progress": "100",
"download_url": "https://api.plannrcrm.com/file/372ae21f-54f9-4890-a360-f72e2424f055/download",
"preview_url": "https://api.plannrcrm.com/file/9966b8c3-4c83-48b8-be70-de26a9fd1b29/preview",
"folder_name": "folder 2",
"documentable_type": "account",
"documentable": "Object",
"navigator": {
"model_type": "account",
"model_uuid": null
}
},
"account": {
"uuid": "807c360c-69e5-4495-b074-bb19a260e883",
"created_at": "2026-08-28T07:35:05+01:00",
"updated_at": "2026-08-28T07:35:05+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/2b2fdc7d-5189-4d91-a2d5-0fa3ada0dda7/adbe0b4a-f1a5-4c0b-9fa0-ac2a01798f7a",
"fact_find_passes": {
"uuid": "a6a93a30-6db6-452a-afbc-10dcad0fb7ba",
"created_at": "2026-08-28T07:35:05+01:00",
"updated_at": "2026-08-28T07:35:05+01:00",
"firm": {
"uuid": null,
"name": "Codepotato Ltd"
},
"circle": {
"uuid": null,
"name": "The Codepotato Gang"
},
"expires_at": "2026-08-28T07:35:05+01:00",
"progress": 50,
"is_complete": false,
"completed_sections": 2
}
},
"created_at": "2026-08-28T07:35:00+01:00"
}
]
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}