Launch document signing Run in API Explorer
Body
Required
-
Participants who will be viewing and signing the documents. Must be given in the order you would like the participants to view the documents.
-
Array document template UUIDs to be added as adhoc documents of the document signing process. Required without document_pack.
-
Array variable dependant models that are needed for variable replacing across all documents that are provided.
POST
/api/v1/document-signing
curl \
--request POST 'https://api.plannrcrm.com/api/v1/document-signing' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"participant_uuids":["a84d2774-7a31-4808-a18e-863c48ecfda0","4d3bcb3b-1776-461b-a9a7-b8dfd6289779"],"document_template_uuids":["6757801f-e422-4999-849e-fa4bddefb819","5b2b0245-8426-4ab6-8e3d-0b9a696cd80b"],"document_template_dependants":[{"client-1":"62189322-a263-4caf-8e8f-ae70adb48371","client-2":"872b2ec0-450a-4eea-bbfc-6105c5107aa2"}]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participant_uuids": [
"a84d2774-7a31-4808-a18e-863c48ecfda0",
"4d3bcb3b-1776-461b-a9a7-b8dfd6289779"
],
"document_template_uuids": [
"6757801f-e422-4999-849e-fa4bddefb819",
"5b2b0245-8426-4ab6-8e3d-0b9a696cd80b"
],
"document_template_dependants": [
{
"client-1": "62189322-a263-4caf-8e8f-ae70adb48371",
"client-2": "872b2ec0-450a-4eea-bbfc-6105c5107aa2"
}
]
}
Response examples (200)
{
"name": 1000243230,
"uuid": "a73cc526-bc86-467f-8397-139f71571819",
"status": "pending",
"documents": [
{
"name": "Welcome Pack",
"uuid": "6c2bc84b-0c31-488f-95a4-bb7b335fdd89",
"status": "pending",
"created_at": "2025-11-19T13:56:58+00:00",
"updated_at": "2025-11-19T13:56:58+00:00",
"alphatrust_id": 1000455612
}
],
"created_at": "2025-11-19T13:56:58+00:00",
"updated_at": "2025-11-19T13:56:58+00:00",
"launched_by": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Gareth Thompson",
"role": "client",
"tags": "App\\Http\\Resources\\TagResource",
"type": "client",
"uuid": "f1529571-99ef-4723-a301-0c816b817592",
"email": "gareth@codepotato.co.uk",
"groups": "App\\Http\\Resources\\GroupResource",
"owners": "App\\Http\\Resources\\AccountResource",
"circles": "App\\Http\\Resources\\CircleResource",
"last_name": "Thompson",
"photo_url": "https://eu.ui-avatars.com/api/?name=gareth+thompson",
"created_at": "2025-11-19T13:56:58+00:00",
"first_name": "Gareth",
"updated_at": "2025-11-19T13:56:58+00:00",
"with_login": true,
"inactive_at": "2025-11-19",
"custom_fields": "App\\Http\\Resources\\CustomFieldValueResource",
"introduced_by": "App\\Http\\Resources\\AccountResource",
"primary_email": "App\\Http\\Resources\\ContactDetailResource",
"can_be_deleted": "false",
"assigned_adviser": "App\\Http\\Resources\\AccountResource",
"next_review_date": "2025-11-19T13:56:58+00:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2025-11-19T13:56:58+00:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"joint_account_circle": "App\\Http\\Resources\\CircleResource",
"ownership_percentage": 100,
"previous_review_date": "2025-11-19T13:56:58+00:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2025-11-19T13:56:58+00:00"
},
"participants": [
{
"name": "Gareth Thompson",
"uuid": "0959f175-0f56-428b-b140-da03a58f507b",
"status": "pending",
"created_at": "2025-11-19T13:56:58+00:00",
"updated_at": "2025-11-19T13:56:58+00:00",
"alphatrust_id": 1000145124
}
]
}