Get all Actions belonging to an account

GET /api/v2/portal/actions

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")

  • 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).

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
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": "c93611ec-3c5c-4a12-99be-a2b8d7d85fbf",
      "title": "Signature Request",
      "resource": {
        "uuid": "c6ae0159-e73c-4c2a-a48e-4b9792acaaf4",
        "schema": "App\\Http\\Resources\\FactFind\\FactFindSchemaResource",
        "status": "complete",
        "account": "App\\Http\\Resources\\MinimalAccountResource",
        "created_at": "2025-04-02T13:27:59+01:00",
        "updated_at": "2025-04-02T13:27:59+01:00",
        "latest_file": "App\\Http\\Resources\\FileResource",
        "completed_at": "2025-03-28T13:27:59+00:00",
        "invitation_url": "https://plannr.valet/fact-find/5e089037-6c01-4122-a689-b922897ccdd5/dea80003-06e6-4739-a3be-673a16397afa",
        "invitation_text": "Please complete this fact-find!",
        "fact_find_passes": "App\\Http\\Resources\\FactFindPassResource"
      },
      "created_at": "2025-04-02T13:27:59+01:00",
      "description": "Invited to complete the action item",
      "is_completed": "true"
    }
  ]
}