create_signature_request
Create a signature request to initiate a signing flow. Provide a name and creator email, and get an ID to add documents and signatories subsequently.
Instructions
Creates a new signature request — the top-level container for documents and signatories in a signing flow. Use this first, before add_document_to_signature_request. No prerequisites. Example: create_signature_request({ name: 'NDA — Acme Corp', createdBy: 'jane@company.com' }) returns { id, ... } — use the returned id as signatureRequestId in subsequent calls.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| language | No | ||
| provider | No | ||
| createdBy | Yes | ||
| senderName | No | ||
| closeConfig | No | ||
| description | No | ||
| webhookUris | No | ||
| notifications | No | ||
| senderAddress | No | ||
| uniqueValidator | No | ||
| signatureRequestBody | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | ||
| name | No | ||
| status | No | ||
| language | No | ||
| provider | No | ||
| createdBy | No | ||
| senderName | No | ||
| description | No | ||
| webhookUris | No | ||
| notifications | No | ||
| senderAddress | No | ||
| uniqueValidator | No | ||
| cancellationReason | No | ||
| signatureRequestBody | No |