-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopenapi.yaml
More file actions
6847 lines (6847 loc) · 248 KB
/
Copy pathopenapi.yaml
File metadata and controls
6847 lines (6847 loc) · 248 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
openapi: 3.0.1
info:
title: SignWell Developer API
description: API for creating, managing, and tracking electronic signature workflows.
version: v1
termsOfService: https://www.signwell.com/terms/
contact:
email: support@signwell.com
tags:
- name: Document
description: Create, send, and manage documents for electronic signing.
- name: Template
description: Create and manage reusable document templates.
- name: Bulk Send
description: Send a document to multiple recipients in batch using templates.
- name: Webhooks
description: Subscribe to document lifecycle events via webhook callbacks.
- name: API Application
description: Manage API application settings and branding.
- name: Me
description: Retrieve account information for the authenticated API key.
- name: Regional
description: Access region-specific endpoints for data residency compliance.
paths:
"/api/v1/documents":
get:
summary: List Documents
description: Returns a paginated list of documents for the authenticated account.
tags:
- Document
security:
- api_key: []
operationId: listDocuments
x-internal: true
parameters:
- name: page
in: query
schema:
"$ref": "#/components/schemas/Page"
required: false
- name: limit
in: query
schema:
"$ref": "#/components/schemas/Limit"
required: false
responses:
'200':
description: successful
content:
application/json:
example:
documents:
- id: a83ff091-11fc-4091-8111-6dd2ee8e3393
archived: false
created_at: '2026-03-31T15:46:45Z'
decline_message:
embedded_edit_url: https://www.signwell.com/edit/document/cb858cfc-3bd0-41a8-9b29-abb1da693aac/
error_message:
embedded_preview_url:
language: en
name: miscarriage-relationship/omnis.mp3
requester_email_address: 1_scary_terry@keeling-bahringer.example
status: Created
test_mode: false
updated_at: '2026-03-31T15:46:45Z'
allow_decline: true
allow_reassign: true
api_application_id:
custom_requester_email:
custom_requester_name:
decline_redirect_url:
embedded_signing: false
expires_in: 30
metadata: {}
redirect_url:
reminders: true
apply_signing_order: false
message: "<p>Hey there,</p><p> </p><p>Please review and complete
this document. You can click on the document below to get started.</p>"
subject: Please complete miscarriage-relationship/omnis.mp3
labels: []
fields: []
files: []
copied_contacts: []
recipients: []
checkbox_groups: []
- id: f9bce8ff-2f98-4959-92e4-c895a1367341
archived: false
created_at: '2026-03-31T15:46:45Z'
decline_message:
embedded_edit_url: https://www.signwell.com/edit/document/302e3717-2a9d-4126-a5f1-b7143b21a018/
error_message:
embedded_preview_url:
language: en
name: miscarriage-linger/et.mp4
requester_email_address: 1_scary_terry@keeling-bahringer.example
status: Created
test_mode: false
updated_at: '2026-03-31T15:46:45Z'
allow_decline: true
allow_reassign: true
api_application_id:
custom_requester_email:
custom_requester_name:
decline_redirect_url:
embedded_signing: false
expires_in: 30
metadata: {}
redirect_url:
reminders: true
apply_signing_order: false
message: "<p>Hey there,</p><p> </p><p>Please review and complete
this document. You can click on the document below to get started.</p>"
subject: Please complete miscarriage-linger/et.mp4
labels: []
fields: []
files: []
copied_contacts: []
recipients: []
checkbox_groups: []
- id: 1b03215e-f3cc-446b-a9dc-293af294c988
archived: false
created_at: '2026-03-31T15:46:45Z'
decline_message:
embedded_edit_url: https://www.signwell.com/edit/document/28e9b87a-88dd-4f08-a1a2-633649ccfa3c/
error_message:
embedded_preview_url:
language: en
name: dictate_publish/error.avi
requester_email_address: 1_scary_terry@keeling-bahringer.example
status: Created
test_mode: false
updated_at: '2026-03-31T15:46:45Z'
allow_decline: true
allow_reassign: true
api_application_id:
custom_requester_email:
custom_requester_name:
decline_redirect_url:
embedded_signing: false
expires_in: 30
metadata: {}
redirect_url:
reminders: true
apply_signing_order: false
message: "<p>Hey there,</p><p> </p><p>Please review and complete
this document. You can click on the document below to get started.</p>"
subject: Please complete dictate_publish/error.avi
labels: []
fields: []
files: []
copied_contacts: []
recipients: []
checkbox_groups: []
current_page: 1
next_page:
previous_page:
total_count: 3
total_pages: 1
schema:
"$ref": "#/components/schemas/DocumentListResponse"
'401':
description: unauthorized
content:
application/json:
example:
message: Missing or invalid authorization key
meta:
error: api_key_unauthorized_error
message: Not valid authorization token
messages:
- Not valid authorization token
schema:
"$ref": "#/components/schemas/ErrorResponse"
'429':
description: rate limit exceeded
content:
application/json:
schema:
"$ref": "#/components/schemas/RateLimitErrorResponse"
post:
summary: Create Document
description: Creates and optionally sends a new document for signing. If `draft`
is set to true the document will not be sent.
tags:
- Document
security:
- api_key: []
operationId: createDocument
parameters: []
responses:
'201':
description: created
content:
application/json:
example:
id: 6a8b63de-1885-4ab8-bf0a-77ebd3686c00
archived: false
created_at: '2026-03-31T15:46:47Z'
decline_message:
embedded_edit_url: https://www.signwell.com/edit/document/3560287f-49f5-423e-a37a-37cd7403c1c8/
error_message:
embedded_preview_url:
language: en
name: Agreement
requester_email_address: requester@domain.com
status: Created
test_mode: false
updated_at: '2026-03-31T15:46:47Z'
allow_decline: true
allow_reassign: true
api_application_id:
custom_requester_email: requester@domain.com
custom_requester_name: Requester
decline_redirect_url: https://www.domain.com/decline_path/
embedded_signing: false
expires_in: 365
metadata:
key1: value1
key2: value2
redirect_url: https://www.domain.com/redirect_path/
reminders: true
apply_signing_order: false
message: Normal Body
subject: Normal subject
labels:
- id: 7af3624f-fc72-4f69-bed6-de920ba4f72b
name: My First Label
- id: 00f4b0c6-c24b-4320-9ebf-0a3b068cfc05
name: My Second Label
- id: bd7c048f-dc98-4a32-b84f-46e8a117839e
name: My Third Label
fields:
- - api_id: DateField_1
height: '19.0'
page: 1
required: true
type: date
value: 06/05/2021
width: '86.0'
x: 230.0
"y": 60.0
date_format: DD/MM/YYYY
formula: ''
lock_sign_date: true
recipient_id: recipient_id_1
- api_id: DateSigned_1
height: '19.0'
page: 1
required: true
type: autofill_date_signed
value:
width: '86.0'
x: 260.0
"y": 80.0
recipient_id: recipient_id_1
- api_id: Company_1
height: '19.0'
page: 1
required: true
type: autofill_company
value: Great Company
width: '86.0'
x: 260.0
"y": 80.0
recipient_id: recipient_id_1
- api_id: Email_1
height: '19.0'
page: 1
required: true
type: autofill_email
value: recipient1@domain.com
width: '86.0'
x: 260.0
"y": 90.0
recipient_id: recipient_id_1
- api_id: Name_1
height: '19.0'
page: 1
required: true
type: autofill_name
value: Recipient One
width: '86.0'
x: 260.0
"y": 80.0
recipient_id: recipient_id_1
- api_id: FirstName_1
height: '19.0'
page: 1
required: true
type: autofill_name
value: Recipient
width: '86.0'
x: 260.0
"y": 80.0
recipient_id: recipient_id_1
- api_id: LastName_1
height: '19.0'
page: 1
required: true
type: autofill_name
value: One
width: '86.0'
x: 260.0
"y": 80.0
recipient_id: recipient_id_1
- api_id: Phone_1
height: '19.0'
page: 1
required: true
type: autofill_phone
value: '123456789'
width: '86.0'
x: 260.0
"y": 100.0
recipient_id: recipient_id_1
- api_id: Title_1
height: '19.0'
page: 1
required: true
type: autofill_title
value: Important Title
width: '86.0'
x: 260.0
"y": 100.0
recipient_id: recipient_id_1
- - api_id: DateField_2
height: '2.0'
page: 1
required: true
type: date
value: 05/06/2021
width: '1.0'
x: 260.0
"y": 80.0
date_format: MM/DD/YYYY
formula: ''
lock_sign_date: false
recipient_id: recipient_id_2
- api_id: Signature_1
height: '32.0'
page: 2
required: true
type: signature
value:
width: '112.0'
x: 260.0
"y": 80.0
recipient_id: recipient_id_2
- api_id: Signature_2
height: '2.0'
page: 1
required: true
type: signature
value:
width: '1.0'
x: 260.0
"y": 80.0
recipient_id: recipient_id_2
- api_id: CheckBox_1
height: '13.0'
page: 1
required: true
type: checkbox
value: t
width: '13.0'
x: 260.0
"y": 80.0
name:
recipient_id: recipient_id_2
- api_id: CheckBox_2
height: '2.0'
page: 1
required: true
type: checkbox
value: t
width: '1.0'
x: 260.0
"y": 80.0
name: Checkbox name
recipient_id: recipient_id_2
- api_id: Initials_1
height: '32.0'
page: 2
required: true
type: initials
value:
width: '44.0'
x: 260.0
"y": 80.0
recipient_id: recipient_id_2
- api_id: Initials_2
height: '2.0'
page: 1
required: true
type: initials
value:
width: '1.0'
x: 260.0
"y": 80.0
recipient_id: recipient_id_2
- api_id: TextField_1
height: '19.0'
page: 1
required: true
type: text
value: '123456'
width: '86.0'
x: 260.0
"y": 80.0
fixed_width: true
label: label
validation: numbers
recipient_id: recipient_id_2
- api_id: TextField_2
height: '2.0'
page: 1
required: true
type: text
value: '123456'
width: '1.0'
x: 260.0
"y": 80.0
fixed_width: true
label: label
validation: numbers
recipient_id: recipient_id_2
- api_id: TextField_3
height: '20.0'
page: 1
required: true
type: text
value: '123456'
width: '100.0'
x: 260.0
"y": 80.0
fixed_width: true
label: label
validation: numbers
recipient_id: recipient_id_2
- api_id: TextField_4
height: '20.0'
page: 1
required: true
type: text
value: '123456'
width: '100.0'
x: 260.0
"y": 80.0
fixed_width: true
label: label
validation: numbers
recipient_id: recipient_id_2
- api_id: Company_2
height: '19.0'
page: 1
required: true
type: autofill_company
value: Great Company
width: '86.0'
x: 260.0
"y": 80.0
recipient_id: recipient_id_1
- api_id: Email_2
height: '19.0'
page: 1
required: true
type: autofill_email
value: recipient1@domain.com
width: '86.0'
x: 260.0
"y": 90.0
recipient_id: recipient_id_1
- api_id: Name_2
height: '19.0'
page: 1
required: true
type: autofill_name
value: Recipient One
width: '86.0'
x: 260.0
"y": 80.0
recipient_id: recipient_id_1
- api_id: FirstName_2
height: '19.0'
page: 1
required: true
type: autofill_name
value: Recipient
width: '86.0'
x: 260.0
"y": 80.0
recipient_id: recipient_id_1
- api_id: LastName_2
height: '19.0'
page: 1
required: true
type: autofill_name
value: One
width: '86.0'
x: 260.0
"y": 80.0
recipient_id: recipient_id_1
- api_id: Phone_2
height: '19.0'
page: 1
required: true
type: autofill_phone
value: '123456789'
width: '86.0'
x: 260.0
"y": 100.0
recipient_id: recipient_id_1
- api_id: Title_2
height: '19.0'
page: 1
required: true
type: autofill_title
value: Important Title
width: '86.0'
x: 260.0
"y": 100.0
recipient_id: recipient_id_1
files:
- name: filename1.pdf
pages_number: 0
- name: filename2.pdf
pages_number: 0
copied_contacts:
- name: CC one
email: cc1@domain.com
recipients:
- email: recipient1@domain.com
id: recipient_id_1
message: This is a message
name: Recipient One
passcode: '123'
send_email: false
send_email_delay: 0
status: created
subject: Hi, please sign this contract
signing_order: 1
signing_url: https://www.signwell.com/docs/d549fd60a0/
bounced:
bounced_details:
attachment_requests:
- name: normal name
required: true
url: https://www.signwell.com/document_attachments/boe984aG7RUlK6YP2jZrInX6ywR/?access=2dd579d0-5e1d-4fd5-abd4-ebe5a228284d
- email: recipient2@domain.com
id: recipient_id_2
message:
name: Recipient 2
passcode:
send_email: false
send_email_delay: 0
status: created
subject:
signing_order: 2
signing_url: https://www.signwell.com/docs/bf45f2dad5/
bounced:
bounced_details:
attachment_requests:
- name: Driver License
required: false
url: https://www.signwell.com/document_attachments/LgbPkXRrZDTdzzNRGLkXSplYMMJ/?access=2dd579d0-5e1d-4fd5-abd4-ebe5a228284d
checkbox_groups:
- id: 6f69b18a-5fd7-4d74-8829-e7cc707a34f3
group_name: Group 1
recipient_id:
checkbox_ids:
- CheckBox_1
- CheckBox_2
validation: minimum
required: true
min_value: 1
schema:
"$ref": "#/components/schemas/DocumentResponse"
'400':
description: bad request
content:
application/json:
example:
errors:
message: The request contains invalid key values.
invalid_keys:
- name
schema:
"$ref": "#/components/schemas/ValidationErrorResponse"
'422':
description: unprocessable entity
content:
application/json:
example:
errors:
custom_requester_email:
- is invalid
custom_requester_name:
- is too long (maximum is 100 characters)
decline_redirect_url:
- is not a valid URL
redirect_url:
- is not a valid URL
expires_in:
- must be less than or equal to 365
metadata:
- The key/value pairs must not exceed 50
- 'Check the following keys: [qgtxtpsnyxjwzvbzhnmrjziscxsmgcugpqanuygve],
length needs to be less than 40 characters'
- 'Check the value of the following keys: [ke50], length needs to
be less than 500 characters and must be a string'
api_application_id:
- The provided API application id is invalid
subject:
- is too long (maximum is 255 characters)
message:
- is too long (maximum is 4000 characters)
recipients:
duplicated_ids: 'These ids are duplicated: recipient_id_1.'
duplicated_emails: 'These emails are duplicated: recipient1domain.com.'
recipient_1:
name:
- is too long (maximum is 255 characters)
email:
- format is invalid.
recipient_2:
email:
- format is invalid.
copied_contacts:
copied_contact_1:
name:
- is too long (maximum is 255 characters)
email:
- format is invalid.
copied_contact_2:
email:
- format is invalid.
- is already a recipient
attachment_requests:
invalid_ids: 'These recipient ids are not present in the recipients
array: [recipient_id_3]'
fields:
duplicated_api_ids: 'These api ids are duplicated: CheckBox_2.'
invalid_ids: 'These recipient ids are not present in the recipients
array: [recipient_id_2, recipient_id_3]'
file_1:
field_1:
date_format:
- Not allowed for text.
lock_sign_date:
- Not allowed for text.
file_2:
field_1:
date_format:
- Not allowed for checkbox.
fixed_width:
- Not allowed for checkbox.
validation:
- Not allowed for checkbox.
label:
- Not allowed for checkbox.
lock_sign_date:
- Not allowed for checkbox.
field_2:
invalid_date_value: DateField value must be in Iso8601 format.
fixed_width:
- Not allowed for date.
validation:
- Not allowed for date.
label:
- Not allowed for date.
date_format:
- 'Allowed formats for date fields are: MM/DD/YYYY | DD/MM/YYYY
| YYYY/MM/DD | Month DD, YYYY | MM/DD/YYYY hh:mm:ss a'
field_3:
date_format:
- Not allowed for initials.
fixed_width:
- Not allowed for initials.
validation:
- Not allowed for initials.
label:
- Not allowed for initials.
lock_sign_date:
- Not allowed for initials.
field_4:
date_format:
- Not allowed for signature.
fixed_width:
- Not allowed for signature.
validation:
- Not allowed for signature.
label:
- Not allowed for signature.
lock_sign_date:
- Not allowed for signature.
checkbox_groups:
min_value_negative: The min value must be greater than or equal
to 0 in the checkbox group Group 1
files:
file_1:
file_data:
- At least one of file_url or file_base64 should be present
file_2:
file_data:
- Only one of file_url or file_base64 should be present, not
both
file_3:
file_url:
- is not a valid URL
file_4:
file_base64:
- 'the file type is unsupported, we support the following formats:
application/msword, application/pdf, application/octet-stream,
application/x-ole-storage, application/vnd.openxmlformats-officedocument.wordprocessingml.document,
application/vnd.ms-powerpoint, application/vnd.openxmlformats-officedocument.presentationml.presentation,
application/vnd.ms-excel, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,
application/x-iwork-keynote-sffkey, application/x-iwork-numbers-sffnumbers,
application/x-iwork-pages-sffpages, image/jpeg, image/png,
image/tiff, image/webp, text/html'
file_5:
name:
- The file extension is invalid.
file_6:
name:
- can't be blank
schema:
"$ref": "#/components/schemas/ValidationErrorResponse"
'429':
description: rate limit exceeded
content:
application/json:
schema:
"$ref": "#/components/schemas/RateLimitErrorResponse"
requestBody:
content:
application/json:
schema:
"$ref": "#/components/schemas/DocumentRequest"
required: true
"/api/v1/documents/{id}":
get:
summary: Get Document
description: Returns a document and all associated document data. Supply the
unique document ID from either a document creation request or Document page
URL.
tags:
- Document
security:
- api_key: []
operationId: getDocument
parameters:
- name: id
in: path
schema:
"$ref": "#/components/schemas/DocumentId"
required: true
responses:
'200':
description: successful
content:
application/json:
example:
id: 2707ac1d-5dd3-4d95-8ae9-f0ac55f51203
archived: false
created_at: '2026-03-31T15:46:45Z'
decline_message:
embedded_edit_url: https://www.signwell.com/edit/document/bf0ff8a4-50ec-42d7-8167-72fb404a5276/
error_message:
embedded_preview_url:
language: en
name: diagram_arena/architecto.mp3
requester_email_address: jerry.smith.2@yundt-weber.test
status: Created
test_mode: false
updated_at: '2026-03-31T15:46:45Z'
allow_decline: false
allow_reassign: true
api_application_id:
custom_requester_email: rosalia_fisher@lehner.test
custom_requester_name: Bendu
decline_redirect_url: http://bosco.example/shani
embedded_signing: false
expires_in: 10
metadata:
ut: quam
itaque: cumque
redirect_url: http://bogan.example/eldora.kiehn
reminders: false
apply_signing_order: false
message: "<p>Hey there,</p><p> </p><p>Please review and complete
this document. You can click on the document below to get started.</p>"
subject: Please complete diagram_arena/architecto.mp3
labels:
- id: 915b493e-8ba3-44aa-9e8b-ceb4044ac294
name: Frances Goodwin
- id: 9acee41c-ee12-452d-bf40-f6645ee4b6ce
name: Gov. Roy Kohler
fields:
- - api_id: CheckBox_2
height: '13.0'
page: 1
required: true
type: checkbox
value:
width: '13.0'
x: 1.1
"y": 1.1
name:
recipient_id:
signing_elements_group_id: 6cd1fb22-417c-48e9-8674-d95c9613ff73
- api_id: CheckBox_3
height: '13.0'
page: 1
required: true
type: checkbox
value:
width: '13.0'
x: 1.1
"y": 1.1
name:
recipient_id:
- api_id: Signature_1
height: '32.0'
page: 1
required: true
type: signature
value:
width: '112.0'
x: 1.1
"y": 1.1
recipient_id: e052eeae-0706-4dd9-8ec2-68a918290223
files:
- name: velit.numbers
pages_number: 1
copied_contacts:
- name: Jon Auer
email: david@cummings-dicki.example
recipients:
- email: kimbery_kreiger@hoeger-littel.example
id: e052eeae-0706-4dd9-8ec2-68a918290223
message:
name: Rodolfo Daniel
passcode:
send_email:
send_email_delay:
status: created
subject:
signing_order: 1
signing_url: https://www.signwell.com/docs/05791040ca/
bounced:
bounced_details:
attachment_requests:
- name: introduction_premium/vitae.html
required: true
url: https://www.signwell.com/document_attachments/n4dXkq0XLoioY3K7Z9k4SX1ezWd/?access=3550e3ab-f2da-4193-897f-cfba53272548
- email: ira@metz-dare.test
id: 34e316a6-0f62-4751-81fe-145afa405f34
message:
name: Laurette Rohan
passcode:
send_email:
send_email_delay:
status: created
subject:
signing_order: 2
signing_url: https://www.signwell.com/docs/2eb80d8fb8/
bounced:
bounced_details:
attachment_requests: []
checkbox_groups:
- id: 6cd1fb22-417c-48e9-8674-d95c9613ff73
group_name:
recipient_id:
checkbox_ids:
- CheckBox_2
validation:
required: false
schema:
"$ref": "#/components/schemas/DocumentResponse"
'404':
description: not_found
content:
application/json:
example:
message: Not found
meta:
error: record_not_found
message: Couldn't find the document requested
messages:
- Couldn't find the document requested
schema:
"$ref": "#/components/schemas/ErrorResponse"
'429':
description: rate limit exceeded
content:
application/json:
schema:
"$ref": "#/components/schemas/RateLimitErrorResponse"
delete:
summary: Delete Document
description: Deletes a document. Deleting a document will also cancel document
signing (if in progress). Supply the unique document ID from either a Create
Document request or document page URL.
tags:
- Document
security:
- api_key: []
operationId: deleteDocument
parameters:
- name: id
in: path
schema:
"$ref": "#/components/schemas/DocumentId"
required: true
responses:
'204':
description: no content
'404':
description: not found
content:
application/json:
example:
message: Not found
meta:
error: record_not_found
message: Couldn't find the document requested
messages:
- Couldn't find the document requested
schema:
"$ref": "#/components/schemas/ErrorResponse"
'429':
description: rate limit exceeded
content:
application/json:
schema:
"$ref": "#/components/schemas/RateLimitErrorResponse"
"/api/v1/document_templates/documents":
post:
summary: Create Document from Template
description: Creates and optionally sends a new document for signing. If `draft`
is set to true the document will not be sent.
tags:
- Document
security:
- api_key: []
operationId: createDocumentFromTemplate
parameters: []
responses:
'201':
description: created
content:
application/json:
example:
id: d30a5382-698d-4dfc-a5ac-fe89fbd74689
archived: false
created_at: '2026-03-31T15:46:49Z'
decline_message:
embedded_edit_url: https://www.signwell.com/edit/document/9cc6abb4-874c-48c3-920f-499c12b8d56a/
error_message:
embedded_preview_url:
language: en
name: Agreement
requester_email_address: requester@domain.com
status: Created
test_mode: false
updated_at: '2026-03-31T15:46:49Z'
template_ids:
- f3374520-a554-454c-ba90-d3d95f51212a
- b44029f8-87a7-4f05-85d5-f343b0e5dbc1
allow_decline: true
allow_reassign: true
api_application_id:
custom_requester_email: requester@domain.com
custom_requester_name: Requester
decline_redirect_url: https://www.domain.com/decline_path/
embedded_signing: false
expires_in: 365
metadata:
key1: value1
key2: value2
redirect_url: https://www.domain.com/redirect_path/
reminders: true
apply_signing_order: false
message: Normal Body
subject: Normal subject
labels: []
fields:
- - api_id: Signature_1
height: '19.0'
page: 1
required: true
type: signature
value: ''
width: '86.0'
x: 1.1
"y": 1.1
recipient_id: document_sender
- api_id: TextField_1