Signature Request
Update a Signature Request
Updates a given Signature Request. Any parameters not provided are left unchanged.
patch/signature_requests/{signatureRequestId}
Path parameters
signatureRequestIdstring uuid required
The unique identifier for a resource.
Example:9a93d3b5-fb3b-4abf-9e70-26315b33506c
Signature Request Id
Request body
Example request
{
"ordered_signers": true,
"ordered_approvers": true,
"reminder_settings": {
"max_occurrences": 5
},
"timezone": "Europe/Paris",
"email_custom_note": "Please sign these documents as soon as possible.",
"branding_id": "3a93d3b5-fb3b-4abf-9e70-26315b33506b",
"custom_experience_id": "3a93d3b5-fb3b-4abf-9e70-26315b33506b",
"signers_allowed_to_decline": true,
"workspace_id": "3a93d3b5-fb3b-4abf-9e70-26315b33506b",
"audit_trail_locale": "en",
"email_notification": {
"custom_note": "Please sign these documents as soon as possible."
},
"labels": [
"3a93d3b5-fb3b-4abf-9e70-26315b33506b",
"89120884-d29a-4b1a-ac7b-a9e73a872795"
]
}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"
}
]
}