Signature Request
Initiate a new Signature Request
Creates a new Signature Request resource.
post/signature_requests
Request body
Example request
{
"ordered_signers": true,
"ordered_approvers": true,
"custom_recipient_order": true,
"reminder_settings": {
"max_occurrences": 5
},
"timezone": "Europe/Paris",
"email_custom_note": "Please sign these documents as soon as possible.",
"template_id": "9a93d3b5-fb3b-4abf-9e70-26315b33506c",
"branding_id": "3a93d3b5-fb3b-4abf-9e70-26315b33506b",
"custom_experience_id": "3a93d3b5-fb3b-4abf-9e70-26315b33506b",
"documents": [
"89120884-d29a-4b1a-ac7b-a9e73a872795"
],
"signers": [
{
"info": {
"phone_number": "+41446667700",
"locale": "fr"
},
"fields": [
{
"document_id": "9b6ed2f3-244f-487a-baa1-bbe4f51c8748"
}
],
"redirect_urls": {
"success": "https://example.com/success",
"error": "https://example.com/error"
}
}
],
"workspace_id": "89120884-d29a-4b1a-ac7b-a9e73a872795",
"audit_trail_locale": "en",
"signers_allowed_to_decline": true,
"email_notification": {
"custom_note": "Please sign these documents as soon as possible."
},
"template_placeholders": {
"signers": [
{
"label": "Employee",
"info": {
"phone_number": "+41446667700",
"locale": "fr"
},
"redirect_urls": {
"success": "https://example.com/success",
"error": "https://example.com/error",
"decline": "https://example.com/decline"
}
}
],
"read_only_text_fields": [
{
"label": "Employee",
"text": "This is my read_only_text"
}
]
},
"labels": [
"3a93d3b5-fb3b-4abf-9e70-26315b33506b",
"89120884-d29a-4b1a-ac7b-a9e73a872795"
],
"workflow_session_id": "0ef334d2-7f36-4643-8a2a-4283b4a3e4a4",
"previous_attempt_id": "9412b83b-b4b9-4a94-97b5-2b43dfa4cde4"
}Response
OK
Example response
{
"id": "0ef334d2-7f36-4643-8a2a-4283b4a3e4a4",
"status": "ongoing",
"name": "My Signature Request",
"delivery_mode": "email",
"created_at": "2024-01-18T22:59:00Z",
"activated_at": "2024-01-18T22:59:00Z",
"completed_at": "2024-01-18T22:59:00Z",
"approved_at": "2024-01-18T22:59:00Z",
"deleted_at": "2024-01-18T22:59:00Z",
"timezone": "Europe/Paris",
"email_custom_note": "Please sign these documents as soon as possible.",
"expiration_date": "2024-01-18T22:59:59Z",
"source": "public_api",
"ordered_signers": true,
"external_id": "ref#1234",
"workspace_id": "0ef334d2-7f36-4643-8a2a-4283b4a3e4a4",
"sender": {
"id": "550e8402-e29b-41d4-a716-446655440000",
"email": "john.doe@example.com"
},
"reminder_settings": {
"interval_in_days": 1,
"max_occurrences": 2
},
"signers": [
{
"id": "550e8402-e29b-41d4-a716-446655440000",
"status": "notified",
"delivery_mode": "email",
"answers": [
{
"field_id": "89d519d7-63bd-45d2-8539-a10a9172368a",
"name": "Street Address",
"question": "What is your address?",
"answer": "42 Elm St, Rivertown, NY 10567",
"default_value": "47 Elm Street, Rivertown, NY 10567",
"read_only": true
}
]
}
],
"approvers": [
{
"id": "550e8402-e29b-41d4-a716-446655440000",
"status": "approved"
}
],
"labels": [
{
"id": "0ef334d2-7f36-4643-8a2a-4283b4a3e4a4",
"name": "Invoices"
}
],
"documents": [
{
"id": "0ef334d2-7f36-4643-8a2a-4283b4a3e4a4",
"nature": "signable_document"
}
],
"custom_properties": [
{
"id": "0ef334d2-7f36-4643-8a2a-4283b4a3e4a4",
"name": "Department",
"type": "text",
"value": "Marketing"
}
]
}