Get a fact-find request

GET /api/v1/fact-find/request/{factFindRequest_uuid}

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • uuid string

      The UUID of the resource.

    • The timestamp of when the resource was created.

    • The timestamp of when the resource was updated.

    • status string

      The status of the fact-find request. Available options: in_progress,complete

    • The datetime when the fact-find request has been completed

    • The text that is used in the notification/email sent out to the client.

    • schema object

      The fact-find schema used for the fact-find request.

    • The latest file that has been generated for the fact-find request.

    • account object

      The account that the fact-find request was sent to. Only visible when listing fact-find requests for a circle.

    • The invitation URL sent to the client.

    • The fact find passes added to the fact-find request.

GET /api/v1/fact-find/request/{factFindRequest_uuid}
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/fact-find/request/factFindRequest_uuid' \
 --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)
{
  "uuid": "5876c05e-4ca4-43d0-af3f-01459fb89523",
  "schema": {
    "name": "Default fact-find",
    "uuid": "6011ea14-4488-45ae-8f7d-1245f72fdbb2",
    "created_at": "2025-06-05T11:39:42+01:00",
    "public_url": "https://plannr.valet/fact-find/edbeafea-5cd6-46f9-801d-88d5b44847a9",
    "updated_at": "2025-06-05T11:39:42+01:00",
    "archived_at": "2025-06-04T11:39:42+01:00",
    "is_archived": false,
    "sections_count": 5,
    "introduction_html": "Welcome to our fact-find! <b>You can use some HTML too.</b>"
  },
  "status": "complete",
  "account": {
    "name": "Gareth Thompson",
    "role": "client",
    "type": "client",
    "uuid": "ff827e79-66e7-4ebd-8ac4-f30e9073419f",
    "email": "gareth@codepotato.co.uk",
    "last_name": "Thompson",
    "photo_url": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson",
    "created_at": "2025-06-05T11:39:42+01:00",
    "first_name": "Gareth",
    "updated_at": "2025-06-05T11:39:42+01:00",
    "external_references": "App\\Http\\Resources\\ExternalReferenceResource"
  },
  "created_at": "2025-06-05T11:39:42+01:00",
  "updated_at": "2025-06-05T11:39:42+01:00",
  "latest_file": {
    "firm": "App\\Http\\Resources\\FirmResource",
    "name": "Welcome to Plannr",
    "path": "Gareth Thompson/Subfolder/Welcome to Plannr.pdf",
    "size": "21691783",
    "tags": "App\\Http\\Resources\\TagResource",
    "type": "type",
    "uuid": "0b49014f-5062-4bed-ad6e-689611054f57",
    "folder": "App\\Http\\Resources\\FolderResource",
    "status": "uploaded",
    "account": "App\\Http\\Resources\\MinimalAccountResource",
    "filename": "Welcome to Plannr.pdf",
    "progress": "100",
    "extension": "pdf",
    "navigator": {
      "model_type": "account",
      "model_uuid": "bcda04c0-3350-4aac-a6e0-1254dd855121"
    },
    "created_at": "2025-06-05T11:39:42+01:00",
    "updated_at": "2025-06-05T11:39:42+01:00",
    "folder_name": "folder 2",
    "uploaded_at": "2025-06-05T11:39:42+01:00",
    "documentable": "Object",
    "download_url": "https://plannr.valet/file/bbbc3d71-ee87-4088-bf2d-67876e2076e9/download",
    "last_modified": "2025-06-05T11:39:42+01:00",
    "documentable_type": "account",
    "original_created_at": "2025-06-05T11:39:42+01:00"
  },
  "completed_at": "2025-05-31T11:39:42+01:00",
  "invitation_url": "https://plannr.valet/fact-find/cf84ef20-9905-4f53-b52f-8891f69fa52a/7ee04082-4194-46e1-9b2b-e6f0e9fe3861",
  "invitation_text": "Please complete this fact-find!",
  "fact_find_passes": {
    "firm": {
      "name": "Codepotato Ltd",
      "uuid": "c4d22ff8-d805-457a-a135-a34b4f099bac"
    },
    "uuid": "d9755a46-9f7c-4300-b65a-298c1e8d82f8",
    "circle": {
      "name": "The Codepotato Gang",
      "uuid": "e147fd73-f9bf-42e2-9960-6076f9bf3985"
    },
    "account": "App\\Http\\Resources\\MinimalAccountResource",
    "progress": 50,
    "created_at": "2025-06-05T11:39:42+01:00",
    "expires_at": "2025-06-05T11:39:42+01:00",
    "updated_at": "2025-06-05T11:39:42+01:00",
    "is_complete": false,
    "completed_sections": 2
  }
}