Headers
-
Content-Type
string -
Accept
string -
X-PLANNR-ACCOUNT-UUID
string
Body
Required
-
name
string Required The name of the document.
-
client_uuids
array[string] Required An array containing the client uuids that should be sent the document when it is built.
-
template_uuid
string The UUID of the document template you want to be used with this document. You must not provide the sfdt or docx fields when creating from a template.
-
known_dependants
array[string] Optional: The document variable dependants. Used to swap variables out for real data.
POST
/api/v1/document
curl \
--request POST 'https://api.plannrcrm.com/api/v1/document' \
--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":["da538f47-c232-4304-9aa1-6834dda19ff0","e1e5e6a7-442d-4f83-96e4-5df2a3aa6d12"],"template_uuid":"8c348d0c-ce56-40d6-b9d1-a8339de55cb9","known_dependants":[{"client-1":"e2e7b215-2c46-4fad-9e92-1920c6fbff49"}]}'
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": [
"da538f47-c232-4304-9aa1-6834dda19ff0",
"e1e5e6a7-442d-4f83-96e4-5df2a3aa6d12"
],
"template_uuid": "8c348d0c-ce56-40d6-b9d1-a8339de55cb9",
"known_dependants": [
{
"client-1": "e2e7b215-2c46-4fad-9e92-1920c6fbff49"
}
]
}
Response examples (201)
{
"name": "Welcome Template",
"uuid": "f8017647-2149-4dc0-90d4-9e9534bfd676",
"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/d6710b34-aca6-457c-8c1f-de102a131109/content/pdf?plannr_account_uuid=24ec18b6-f266-46a5-9279-86f4b48f7135",
"public_docx_url": "https://plannr.valet/document/7a481f87-62b7-47ed-8cfd-26fc2942453c/content/docx?plannr_account_uuid=4f8534c0-b0d9-42eb-8e69-4bc77e009adf",
"public_sfdt_url": "https://plannr.valet/document/d4177455-bfd8-4ea8-802a-24c62fe9ad37/content/sfdt?plannr_account_uuid=3d290e9a-fa5f-4aef-98bf-c0140b24311a",
"known_dependants": {
"client-1": "03ee7ddd-a32b-4b24-a182-60a3ad5cc916"
},
"public_preview_url": "https://plannr.valet/document/5197f015-c590-4f7d-b658-eca3870ff355/content/preview?plannr_account_uuid=e0a77075-3365-4713-92ae-e168ca066af2",
"required_dependants": {
"client-1": "client"
},
"last_publishing_error": "There was an error converting this file to PDF. Please try again later."
}