Headers
-
Content-Type
string -
Accept
string -
X-PLANNR-ACCOUNT-UUID
string
Path parameters
-
uuid
string Required
Body
-
name
string The name of the document.
-
client_uuids
array[string] An array containing the client uuids that should be sent the document when it is built.
-
known_dependants
array[string] Optional: The document variable dependants. Used to swap variables out for real data.
PUT
/api/v1/document/{uuid}
curl \
--request PUT 'https://api.plannrcrm.com/api/v1/document/uuid' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"name":"Client Service Agreement","client_uuids":["8c444b8c-8d1e-44d7-8e66-9cd82e93319e","eda996ae-df30-47ca-9c65-cdaaccc32f2c"],"known_dependants":[{"client-1":"d3dc877f-e20b-449c-a7da-70bbaa3db2c0"}]}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Client Service Agreement",
"client_uuids": [
"8c444b8c-8d1e-44d7-8e66-9cd82e93319e",
"eda996ae-df30-47ca-9c65-cdaaccc32f2c"
],
"known_dependants": [
{
"client-1": "d3dc877f-e20b-449c-a7da-70bbaa3db2c0"
}
]
}
Response examples (200)
{
"name": "Welcome Template",
"uuid": "1de1c18f-2dea-42ef-ab20-93d67e4cc239",
"status": "published",
"version": 3,
"created_at": "2025-04-02T13:27:56+01:00",
"updated_at": "2025-04-02T13:27:56+01:00",
"public_pdf_url": "https://plannr.valet/document/2f4fa30c-5485-4e0a-a0ea-f02dc12856bc/content/pdf?plannr_account_uuid=229d78ad-180b-41c2-8431-9da5f2780744",
"public_docx_url": "https://plannr.valet/document/beb4dfa5-1830-43d3-ac6a-8dc72e479311/content/docx?plannr_account_uuid=565151a7-542d-406b-b518-a2ff6ef80ed7",
"public_sfdt_url": "https://plannr.valet/document/e9010b3b-2544-4c95-81c2-4270d745a2c0/content/sfdt?plannr_account_uuid=aade90ba-ad87-4c11-8756-8a089fb46900",
"known_dependants": {
"client-1": "128b0ed2-e502-463a-8b5b-fda038d4ce04"
},
"public_preview_url": "https://plannr.valet/document/3bdd597f-c54c-4a1f-aa9b-feb338c91990/content/preview?plannr_account_uuid=b22b4c01-1663-45d0-8315-4c9b484230ad",
"required_dependants": {
"client-1": "client"
},
"last_publishing_error": "There was an error converting this file to PDF. Please try again later."
}