Generate a fact-find snapshot PDF Run in API Explorer
Ask AI
Generates a PDF snapshot for the given template and clients. Supports individual snapshots per client and combined circle snapshots.
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."
}