List all fact-find passes for the user Run in API Explorer

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://apidocs.plannrcrm.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"PlannrCRM MCP server": {
  "url": "https://apidocs.plannrcrm.com/mcp"
}
Close
GET /api/v1/fact-find-passes/{factFindRequest_uuid}

Path parameters

  • factFindRequest_uuid string Required

Responses

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

      The UUID of the resource.

    • created_at string

      The timestamp of when the resource was created.

    • updated_at string

      The timestamp of when the resource was updated.

    • firm object

      The name of the firm the fact find pass is for.

      Hide firm attributes Show firm attributes object
      • uuid string
      • name string
    • account object

      The account the fact find pass is for.

      Hide account attributes Show account attributes object
      • uuid string
      • created_at string
      • updated_at string
      • type string
      • role string
      • first_name string
      • last_name string
      • name string
      • email string
      • photo_url string
      • external_references string
    • circle object

      The circle the fact find is for.

      Hide circle attributes Show circle attributes object
      • uuid string
      • name string
    • expires_at string

      The expiry date of the fact find pass. When blank, the fact find pass will not expire.

    • progress integer

      The progress of the fact find pass on the fact find.

    • is_complete boolean

      Determines if the fact find pass has completed the fact find.

    • completed_sections integer

      The number of sections the fact find pass has completed on the fact find.

GET /api/v1/fact-find-passes/{factFindRequest_uuid}
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/fact-find-passes/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "uuid": "070a0010-d7be-445d-940b-e989ae92ab2c",
  "created_at": "2026-06-08T16:08:01+01:00",
  "updated_at": "2026-06-08T16:08:01+01:00",
  "firm": {
    "uuid": "cbefe4e3-d0fc-44d5-94bb-ca2d0477b85e",
    "name": "Codepotato Ltd"
  },
  "account": {
    "uuid": "59539ade-7a34-4d0c-a42c-43f22c591535",
    "created_at": "2026-06-08T16:08:01+01:00",
    "updated_at": "2026-06-08T16:08:01+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",
    "external_references": "App\\Http\\Resources\\ExternalReferenceResource"
  },
  "circle": {
    "uuid": "737674fd-cae6-45ba-8b64-063feb868e02",
    "name": "The Codepotato Gang"
  },
  "expires_at": "2026-06-08T16:08:01+01:00",
  "progress": 50,
  "is_complete": false,
  "completed_sections": 2
}