Generate a fact-find snapshot PDF 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
POST /api/v2/fact-find/templates/{factFindTemplate_uuid}/generate-pdf

Generates a PDF snapshot for the given template and clients. Supports individual snapshots per client and combined circle snapshots.

Headers

  • X-PLANNR-ACCOUNT-UUID string

Path parameters

  • factFindTemplate_uuid string Required
application/json

Body

  • client_uuids string(uuid) Required

    An array of client UUIDs to generate snapshots for.

  • circle_uuid string(uuid)

    The UUID of the circle (optional, for combined view).

  • is_combined_view

    Whether to generate a single combined PDF for all clients.

Responses

  • 401 application/json
    Hide response attribute Show response attribute object
    • message string
POST /api/v2/fact-find/templates/{factFindTemplate_uuid}/generate-pdf
curl \
 --request POST 'https://api.plannrcrm.com/api/v2/fact-find/templates/6ff8f7f6-1eb3-3525-be4a-3932c805afed/generate-pdf' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
 --data '{"client_uuids":"cadfe5d2-e696-4148-8109-0103b2ca724f","circle_uuid":"f70a7dc5-3261-488f-b603-7900bfa8175e","is_combined_view":true}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}

# Payload
{
  "client_uuids": "cadfe5d2-e696-4148-8109-0103b2ca724f",
  "circle_uuid": "f70a7dc5-3261-488f-b603-7900bfa8175e",
  "is_combined_view": true
}
Response examples (401)
{
  "message": "Unauthenticated."
}