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": "fb380d98-0c9e-49c5-8263-3ef135bb23e8",
  "schema": {
    "name": "Default fact-find",
    "uuid": "6e5013cc-35a5-45f9-bd66-7615d097d3ae",
    "created_at": "2025-05-14T18:27:15+01:00",
    "public_url": "https://plannr.valet/fact-find/aacedcdf-81ce-4213-80ca-50c8cd4d78dc",
    "updated_at": "2025-05-14T18:27:15+01:00",
    "archived_at": "2025-05-13T18:27:15+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": "cee360ac-cecb-4765-8455-b855750d5e59",
    "email": "gareth@codepotato.co.uk",
    "last_name": "Thompson",
    "photo_url": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson",
    "created_at": "2025-05-14T18:27:15+01:00",
    "first_name": "Gareth",
    "updated_at": "2025-05-14T18:27:15+01:00",
    "external_references": "App\\Http\\Resources\\ExternalReferenceResource"
  },
  "created_at": "2025-05-14T18:27:15+01:00",
  "updated_at": "2025-05-14T18:27:15+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": "59975f7f-cffc-4dea-bb11-f27bca7d2d0d",
    "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": "1acf0f3e-d72b-4b3e-aca5-818cb59ef87d"
    },
    "created_at": "2025-05-14T18:27:15+01:00",
    "updated_at": "2025-05-14T18:27:15+01:00",
    "folder_name": "folder 2",
    "uploaded_at": "2025-05-14T18:27:15+01:00",
    "documentable": "Object",
    "download_url": "https://plannr.valet/file/2ad84417-ceaa-43eb-99df-7f9cfa95d21d/download",
    "last_modified": "2025-05-14T18:27:15+01:00",
    "documentable_type": "account",
    "original_created_at": "2025-05-14T18:27:15+01:00"
  },
  "completed_at": "2025-05-09T18:27:15+01:00",
  "invitation_url": "https://plannr.valet/fact-find/4e21c7e0-6049-48af-b97d-bdb873189fad/2fe0e956-1817-47ff-8ab4-2c6618055c24",
  "invitation_text": "Please complete this fact-find!",
  "fact_find_passes": {
    "firm": {
      "name": "Codepotato Ltd",
      "uuid": "e83846d4-2bf1-4c4f-98b2-f6f934b3aa17"
    },
    "uuid": "4dde4037-db54-40d9-a809-31968824145e",
    "circle": {
      "name": "The Codepotato Gang",
      "uuid": "1b202512-829c-40bc-962f-6711947a8003"
    },
    "account": "App\\Http\\Resources\\MinimalAccountResource",
    "progress": 50,
    "created_at": "2025-05-14T18:27:15+01:00",
    "expires_at": "2025-05-14T18:27:15+01:00",
    "updated_at": "2025-05-14T18:27:15+01:00",
    "is_complete": false,
    "completed_sections": 2
  }
}