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":"bd1fcc6b-e7bd-47b3-9970-2bfe000dc99b","circle_uuid":"6add04d4-6edb-45ba-82b8-06ce31cc7833","is_combined_view":true}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"client_uuids": "bd1fcc6b-e7bd-47b3-9970-2bfe000dc99b",
"circle_uuid": "6add04d4-6edb-45ba-82b8-06ce31cc7833",
"is_combined_view": true
}
Response examples (401)
{
"message": "Unauthenticated."
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}