create_embedded_invite_from_template
Generate documents from templates and immediately create embedded signing invites for recipients to complete e-signatures directly within applications.
Instructions
Create document/group from template and create embedded invite immediately
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entity_id | Yes | ID of the template or template group | |
entity_type | No | Type of entity: 'template' or 'template_group' (optional). If you're passing it, make sure you know what type you have. If it's not found, try using a different type. | |
name | No | Optional name for the new document or document group | |
orders | No | List of orders with recipients for the embedded invite |
Input Schema (JSON Schema)
{
"properties": {
"entity_id": {
"description": "ID of the template or template group",
"title": "Entity Id",
"type": "string"
},
"entity_type": {
"anyOf": [
{
"enum": [
"template",
"template_group"
],
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Type of entity: 'template' or 'template_group' (optional). If you're passing it, make sure you know what type you have. If it's not found, try using a different type.",
"title": "Entity Type"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional name for the new document or document group",
"title": "Name"
},
"orders": {
"anyOf": [
{
"items": {
"$ref": "#/$defs/EmbeddedInviteOrder"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "List of orders with recipients for the embedded invite",
"title": "Orders"
}
},
"required": [
"entity_id"
],
"type": "object"
}