Update a document Run in API Explorer
Ask AI
PUT
/api/v1/document/{uuid}
curl \
--request PUT 'https://api.plannrcrm.com/api/v1/document/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"name":"Client Service Agreement","client_uuids":["15759580-4f7f-443e-bc50-3e21cf369fd5","5b3d1ccd-8b7b-4537-8785-658f8b707072","8833271d-36da-45d4-822c-4720fac06691"],"known_dependants":{"client-1":"b8442d9f-1bef-41c0-86eb-69785b02e53e"}}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Client Service Agreement",
"client_uuids": [
"15759580-4f7f-443e-bc50-3e21cf369fd5",
"5b3d1ccd-8b7b-4537-8785-658f8b707072",
"8833271d-36da-45d4-822c-4720fac06691"
],
"known_dependants": {
"client-1": "b8442d9f-1bef-41c0-86eb-69785b02e53e"
}
}
Response examples (200)
{
"name": "Welcome Template",
"uuid": "34312a28-9f75-444e-b465-91d9e0aa7032",
"status": "published",
"version": 3,
"created_at": "2026-03-18T16:05:26+00:00",
"updated_at": "2026-03-18T16:05:26+00:00",
"public_pdf_url": "https://api.plannrcrm.com/document/8039ecda-7ba3-4ada-97d7-7b420c4d2132/content/pdf?plannr_account_uuid=a15c5c2d-342e-4893-b076-145c944b81fc",
"public_docx_url": "https://api.plannrcrm.com/document/068535e2-e644-4ec9-b3f8-08ae355798bb/content/docx?plannr_account_uuid=e15d0078-d22d-4fa8-a24f-306e20620f9e",
"public_sfdt_url": "https://api.plannrcrm.com/document/c0f38bbb-f981-4ecc-be1f-4914fb266622/content/sfdt?plannr_account_uuid=b745f9b9-913b-4ce8-a9b8-bccfa90ade38",
"known_dependants": {
"client-1": "9714d591-044f-425d-bcf5-0ce6b338bbe3"
},
"public_preview_url": "https://api.plannrcrm.com/document/3655b5bd-2dbd-47cc-9c17-c928227b7547/content/preview?plannr_account_uuid=c7ec36f4-d28c-45b4-8ee1-55d764402bdb",
"required_dependants": {
"client-1": "client"
},
"last_publishing_error": "There was an error converting this file to PDF. Please try again later."
}