v1
latestOpenAPI 3.1.02026-07-14220425.8 KBSubmissions
Create a submission
This API endpoint allows you to create signature requests (submissions) for a document template and send them to the specified submitters (signers).<br><b>Related Guides</b><br><a href="/keyring-guides/send-documents-for-signature-via-api.html" class="link">Send documents for signature via API</a><br><a href="/keyring-guides/pre-fill-pdf-document-form-fields-with-api.html" class="link">Pre-fill PDF document form fields with API</a>
post/submissions
Request body
Example request
{
"template_id": 1000001,
"expire_at": "2024-09-01 12:00:00 UTC",
"variables": {
"variable_name": "value"
},
"submitters": [
{
"role": "First Party",
"email": "john.doe@example.com",
"phone": "+1234567890",
"fields": [
{
"name": "First Name",
"validation": {
"pattern": "[A-Z]{4}"
},
"preferences": {
"font_size": 12,
"format": "DD/MM/YYYY",
"price": 99.99
}
}
]
}
]
}Response
OK