dropbox-sign 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (76) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/README.md +26 -9
  4. data/VERSION +1 -1
  5. data/docs/BulkSendJobApi.md +5 -3
  6. data/docs/TeamResponse.md +1 -0
  7. data/docs/TemplateResponse.md +2 -2
  8. data/docs/TemplateResponseDocument.md +3 -3
  9. data/docs/{TemplateResponseCustomField.md → TemplateResponseDocumentCustomFieldBase.md} +6 -8
  10. data/docs/TemplateResponseDocumentCustomFieldCheckbox.md +10 -0
  11. data/docs/TemplateResponseDocumentCustomFieldText.md +14 -0
  12. data/docs/TemplateResponseDocumentFieldGroup.md +1 -1
  13. data/docs/TemplateResponseDocumentFieldGroupRule.md +11 -0
  14. data/docs/{TemplateResponseDocumentFormField.md → TemplateResponseDocumentFormFieldBase.md} +5 -8
  15. data/docs/TemplateResponseDocumentFormFieldCheckbox.md +10 -0
  16. data/docs/TemplateResponseDocumentFormFieldDateSigned.md +10 -0
  17. data/docs/TemplateResponseDocumentFormFieldDropdown.md +10 -0
  18. data/docs/TemplateResponseDocumentFormFieldHyperlink.md +14 -0
  19. data/docs/TemplateResponseDocumentFormFieldInitials.md +10 -0
  20. data/docs/TemplateResponseDocumentFormFieldRadio.md +10 -0
  21. data/docs/TemplateResponseDocumentFormFieldSignature.md +10 -0
  22. data/docs/TemplateResponseDocumentFormFieldText.md +15 -0
  23. data/docs/{TemplateResponseDocumentStaticField.md → TemplateResponseDocumentStaticFieldBase.md} +6 -5
  24. data/docs/TemplateResponseDocumentStaticFieldCheckbox.md +10 -0
  25. data/docs/TemplateResponseDocumentStaticFieldDateSigned.md +10 -0
  26. data/docs/TemplateResponseDocumentStaticFieldDropdown.md +10 -0
  27. data/docs/TemplateResponseDocumentStaticFieldHyperlink.md +10 -0
  28. data/docs/TemplateResponseDocumentStaticFieldInitials.md +10 -0
  29. data/docs/TemplateResponseDocumentStaticFieldRadio.md +10 -0
  30. data/docs/TemplateResponseDocumentStaticFieldSignature.md +10 -0
  31. data/docs/TemplateResponseDocumentStaticFieldText.md +10 -0
  32. data/docs/TemplateResponseFieldAvgTextLength.md +1 -1
  33. data/lib/dropbox-sign/api/bulk_send_job_api.rb +6 -0
  34. data/lib/dropbox-sign/models/team_response.rb +17 -4
  35. data/lib/dropbox-sign/models/template_response.rb +5 -5
  36. data/lib/dropbox-sign/models/template_response_document.rb +9 -9
  37. data/lib/dropbox-sign/models/{template_response_document_static_field.rb → template_response_document_custom_field_base.rb} +75 -43
  38. data/lib/dropbox-sign/models/template_response_document_custom_field_checkbox.rb +263 -0
  39. data/lib/dropbox-sign/models/template_response_document_custom_field_text.rb +306 -0
  40. data/lib/dropbox-sign/models/template_response_document_field_group.rb +2 -3
  41. data/lib/dropbox-sign/models/template_response_document_field_group_rule.rb +263 -0
  42. data/lib/dropbox-sign/models/{template_response_named_form_field.rb → template_response_document_form_field_base.rb} +82 -79
  43. data/lib/dropbox-sign/models/template_response_document_form_field_checkbox.rb +263 -0
  44. data/lib/dropbox-sign/models/template_response_document_form_field_date_signed.rb +263 -0
  45. data/lib/dropbox-sign/models/template_response_document_form_field_dropdown.rb +263 -0
  46. data/lib/dropbox-sign/models/template_response_document_form_field_hyperlink.rb +306 -0
  47. data/lib/dropbox-sign/models/template_response_document_form_field_initials.rb +263 -0
  48. data/lib/dropbox-sign/models/template_response_document_form_field_radio.rb +263 -0
  49. data/lib/dropbox-sign/models/template_response_document_form_field_signature.rb +263 -0
  50. data/lib/dropbox-sign/models/{template_response_document_form_field.rb → template_response_document_form_field_text.rb} +53 -132
  51. data/lib/dropbox-sign/models/{template_response_custom_field.rb → template_response_document_static_field_base.rb} +94 -112
  52. data/lib/dropbox-sign/models/template_response_document_static_field_checkbox.rb +263 -0
  53. data/lib/dropbox-sign/models/template_response_document_static_field_date_signed.rb +263 -0
  54. data/lib/dropbox-sign/models/template_response_document_static_field_dropdown.rb +263 -0
  55. data/lib/dropbox-sign/models/template_response_document_static_field_hyperlink.rb +263 -0
  56. data/lib/dropbox-sign/models/template_response_document_static_field_initials.rb +263 -0
  57. data/lib/dropbox-sign/models/template_response_document_static_field_radio.rb +263 -0
  58. data/lib/dropbox-sign/models/template_response_document_static_field_signature.rb +263 -0
  59. data/lib/dropbox-sign/models/template_response_document_static_field_text.rb +263 -0
  60. data/lib/dropbox-sign/models/template_response_field_avg_text_length.rb +1 -1
  61. data/lib/dropbox-sign/version.rb +1 -1
  62. data/lib/dropbox-sign.rb +22 -5
  63. data/openapi-config.yaml +1 -1
  64. data/openapi-sdk.yaml +592 -176
  65. data/test_fixtures/AccountCreateResponse.json +1 -0
  66. data/test_fixtures/ApiAppGetResponse.json +1 -0
  67. data/test_fixtures/ApiAppListResponse.json +1 -0
  68. data/test_fixtures/BulkSendJobGetResponse.json +8 -3
  69. data/test_fixtures/SignatureRequestGetResponse.json +65 -65
  70. data/test_fixtures/SignatureRequestListResponse.json +11 -4
  71. data/test_fixtures/TemplateGetResponse.json +1064 -41
  72. data/test_fixtures/TemplateListResponse.json +513 -44
  73. metadata +52 -18
  74. data/docs/TemplateResponseDocumentCustomField.md +0 -25
  75. data/docs/TemplateResponseNamedFormField.md +0 -23
  76. data/lib/dropbox-sign/models/template_response_document_custom_field.rb +0 -454
@@ -26,75 +26,1098 @@
26
26
  {
27
27
  "index": 0,
28
28
  "name": "mutual_nda.pdf",
29
- "field_groups": [],
29
+ "field_groups": [
30
+ {
31
+ "name": "75a6e4b5fea47",
32
+ "rule": {
33
+ "requirement": "require_1",
34
+ "groupLabel": "CheckboxGroup1"
35
+ }
36
+ },
37
+ {
38
+ "name": "0831822584086",
39
+ "rule": {
40
+ "requirement": "require_0-1",
41
+ "groupLabel": "RadioItemGroup1"
42
+ }
43
+ }
44
+ ],
45
+ "custom_fields": [
46
+ {
47
+ "name": "merge_field_1",
48
+ "type": "text",
49
+ "x": 417,
50
+ "y": 219,
51
+ "width": 72,
52
+ "height": 15,
53
+ "required": false,
54
+ "api_id": "967c3e5f-2912-4f53-8ea3-c750652d29fc",
55
+ "fontSize": 12,
56
+ "avg_text_length": {
57
+ "num_lines": 1,
58
+ "num_chars_per_line": 19
59
+ },
60
+ "isMultiline": false,
61
+ "originalFontSize": 12,
62
+ "fontFamily": "arial"
63
+ },
64
+ {
65
+ "name": "merge_field_2",
66
+ "type": "checkbox",
67
+ "x": 515,
68
+ "y": 346,
69
+ "width": 18,
70
+ "height": 18,
71
+ "required": false,
72
+ "api_id": "5e8fe02f-51cf-4f0b-b1d9-2b1e4f6ad07f",
73
+ "fontSize": 12
74
+ }
75
+ ],
30
76
  "form_fields": [
31
77
  {
32
- "api_id": "0ec7a7_1",
33
- "name": "VendorName",
78
+ "name": "Signature1",
79
+ "type": "signature",
80
+ "signer": "1",
81
+ "x": 136,
82
+ "y": 17,
83
+ "width": 108,
84
+ "height": 27,
85
+ "required": true,
86
+ "api_id": "8b6d78a5-0870-4f46-af9c-b78b54a49348",
87
+ "fontSize": 12
88
+ },
89
+ {
90
+ "name": "Textbox1",
91
+ "type": "text",
92
+ "signer": "1",
93
+ "x": 328,
94
+ "y": 17,
95
+ "width": 144,
96
+ "height": 14,
97
+ "required": true,
98
+ "api_id": "7ec10d80-53c9-433b-b252-0b8daa90a8e0",
99
+ "fontSize": 12,
100
+ "avg_text_length": {
101
+ "num_lines": 1,
102
+ "num_chars_per_line": 38
103
+ },
104
+ "isMultiline": false,
105
+ "originalFontSize": 12,
106
+ "fontFamily": "arial"
107
+ },
108
+ {
109
+ "name": "Textbox2",
110
+ "type": "text",
111
+ "signer": "1",
112
+ "x": 328,
113
+ "y": 48,
114
+ "width": 144,
115
+ "height": 14,
116
+ "required": true,
117
+ "api_id": "6574e6ad-7dac-49a2-9d56-650d7c5ade6e",
118
+ "fontSize": 12,
119
+ "avg_text_length": {
120
+ "num_lines": 1,
121
+ "num_chars_per_line": 38
122
+ },
123
+ "isMultiline": false,
124
+ "originalFontSize": 12,
125
+ "fontFamily": "arial"
126
+ },
127
+ {
128
+ "name": "Initial1",
129
+ "type": "initials",
130
+ "signer": "1",
131
+ "x": 148,
132
+ "y": 66,
133
+ "width": 72,
134
+ "height": 27,
135
+ "required": true,
136
+ "api_id": "30f41f54-c7f3-46c3-a29a-bb76ec40b552",
137
+ "fontSize": 12
138
+ },
139
+ {
140
+ "name": "Checkbox1",
141
+ "type": "checkbox",
142
+ "signer": "1",
143
+ "x": 325,
144
+ "y": 111,
145
+ "width": 18,
146
+ "height": 18,
147
+ "required": false,
148
+ "api_id": "d4d6ada9-e1dc-419e-bc0d-1478da694449",
149
+ "group": "75a6e4b5fea47",
150
+ "fontSize": 12
151
+ },
152
+ {
153
+ "name": "Dropdown1",
154
+ "type": "dropdown",
155
+ "signer": "1",
156
+ "x": 423,
157
+ "y": 108,
158
+ "width": 70,
159
+ "height": 14,
160
+ "required": true,
161
+ "api_id": "5863be5e-ce5a-4c9d-aabe-c221914d73c2",
162
+ "fontSize": 12
163
+ },
164
+ {
165
+ "name": "DateSigned1",
166
+ "type": "date_signed",
167
+ "signer": "1",
168
+ "x": 150,
169
+ "y": 119,
170
+ "width": 105,
171
+ "height": 18,
172
+ "required": true,
173
+ "api_id": "9f6d3722-6db7-46da-8fac-3bc09f510262",
174
+ "fontSize": 12
175
+ },
176
+ {
177
+ "name": "Checkbox2",
178
+ "type": "checkbox",
179
+ "signer": "1",
180
+ "x": 325,
181
+ "y": 135,
182
+ "width": 18,
183
+ "height": 18,
184
+ "required": false,
185
+ "api_id": "edd732b8-b158-4714-a87b-503637d09ded",
186
+ "group": "75a6e4b5fea47",
187
+ "fontSize": 12
188
+ },
189
+ {
190
+ "name": "FullName1",
34
191
  "type": "text",
35
- "x": 160,
36
- "y": 141,
37
- "width": 80,
38
- "height": 30,
39
- "required": true
192
+ "signer": "1",
193
+ "x": 144,
194
+ "y": 158,
195
+ "width": 72,
196
+ "height": 14,
197
+ "required": true,
198
+ "api_id": "62fd3f85-4808-4011-8eae-a14ebe9105ef",
199
+ "fontSize": 12,
200
+ "avg_text_length": {
201
+ "num_lines": 1,
202
+ "num_chars_per_line": 19
203
+ },
204
+ "isMultiline": false,
205
+ "originalFontSize": 12,
206
+ "fontFamily": "arial"
40
207
  },
41
208
  {
42
- "api_id": "0ec7a7_2",
43
- "name": "VendorTitle",
209
+ "name": "Email1",
44
210
  "type": "text",
45
- "x": 160,
46
- "y": 181,
47
- "width": 80,
48
- "height": 30,
49
- "required": true
211
+ "signer": "1",
212
+ "x": 133,
213
+ "y": 191,
214
+ "width": 144,
215
+ "height": 14,
216
+ "required": true,
217
+ "api_id": "a1c9bc6b-d498-4787-86e0-30ea779f06a7",
218
+ "fontSize": 12,
219
+ "avg_text_length": {
220
+ "num_lines": 1,
221
+ "num_chars_per_line": 38
222
+ },
223
+ "isMultiline": false,
224
+ "originalFontSize": 12,
225
+ "fontFamily": "arial",
226
+ "validation_type": "email_address"
50
227
  },
51
228
  {
52
- "api_id": "0ec7a7_3",
53
- "name": "ManagerName",
229
+ "name": "RadioItem1",
230
+ "type": "radio",
231
+ "signer": "1",
232
+ "x": 307,
233
+ "y": 211,
234
+ "width": 18,
235
+ "height": 18,
236
+ "required": false,
237
+ "api_id": "fc8a1277-f757-47a2-aeea-5113fa81f2d5",
238
+ "group": "0831822584086",
239
+ "fontSize": 12
240
+ },
241
+ {
242
+ "name": "Company1",
54
243
  "type": "text",
55
- "x": 160,
244
+ "signer": "1",
245
+ "x": 128,
56
246
  "y": 221,
57
- "width": 80,
58
- "height": 30,
59
- "required": true
247
+ "width": 144,
248
+ "height": 14,
249
+ "required": true,
250
+ "api_id": "279b4e7f-e71f-426d-845c-6308cddde379",
251
+ "fontSize": 12,
252
+ "avg_text_length": {
253
+ "num_lines": 1,
254
+ "num_chars_per_line": 38
255
+ },
256
+ "isMultiline": false,
257
+ "originalFontSize": 12,
258
+ "fontFamily": "arial"
60
259
  },
61
260
  {
62
- "api_id": "0ec7a7_4",
63
- "name": "ManagerTitle",
261
+ "name": "Title1",
64
262
  "type": "text",
65
- "x": 160,
66
- "y": 251,
67
- "width": 80,
68
- "height": 30,
69
- "required": true
263
+ "signer": "1",
264
+ "x": 127,
265
+ "y": 250,
266
+ "width": 144,
267
+ "height": 14,
268
+ "required": true,
269
+ "api_id": "8809e39a-a46c-4dae-aaf9-06fc6355d80f",
270
+ "fontSize": 12,
271
+ "avg_text_length": {
272
+ "num_lines": 1,
273
+ "num_chars_per_line": 38
274
+ },
275
+ "isMultiline": false,
276
+ "originalFontSize": 12,
277
+ "fontFamily": "arial"
70
278
  },
71
279
  {
72
- "api_id": "0ec7a7_5",
73
- "name": "DateSigned",
74
- "type": "date_signed",
75
- "x": 523,
76
- "y": 28,
77
- "width": 105,
78
- "height": 16,
79
- "required": true
280
+ "name": "RadioItem2",
281
+ "type": "radio",
282
+ "signer": "1",
283
+ "x": 307,
284
+ "y": 253,
285
+ "width": 18,
286
+ "height": 18,
287
+ "required": false,
288
+ "api_id": "f7b6b70d-0522-4ab7-bfec-b86f147c8be3",
289
+ "group": "0831822584086",
290
+ "fontSize": 12
291
+ },
292
+ {
293
+ "name": "Textbox3",
294
+ "type": "text",
295
+ "signer": "1",
296
+ "x": 410,
297
+ "y": 279,
298
+ "width": 144,
299
+ "height": 14,
300
+ "required": true,
301
+ "api_id": "bad7512a-e22b-46ed-ba03-123db0eda932",
302
+ "fontSize": 12,
303
+ "avg_text_length": {
304
+ "num_lines": 1,
305
+ "num_chars_per_line": 38
306
+ },
307
+ "isMultiline": false,
308
+ "originalFontSize": 12,
309
+ "fontFamily": "arial"
310
+ },
311
+ {
312
+ "name": "Textbox4",
313
+ "type": "text",
314
+ "signer": "1",
315
+ "x": 101,
316
+ "y": 314,
317
+ "width": 72,
318
+ "height": 14,
319
+ "required": true,
320
+ "api_id": "368ed029-bc93-4f92-8f7a-14c3bf8109b5",
321
+ "fontSize": 12,
322
+ "avg_text_length": {
323
+ "num_lines": 1,
324
+ "num_chars_per_line": 19
325
+ },
326
+ "isMultiline": false,
327
+ "originalFontSize": 12,
328
+ "fontFamily": "arial",
329
+ "validation_type": "custom_regex"
330
+ },
331
+ {
332
+ "name": "Textbox8",
333
+ "type": "text",
334
+ "signer": "1",
335
+ "x": 218,
336
+ "y": 313,
337
+ "width": 72,
338
+ "height": 14,
339
+ "required": true,
340
+ "api_id": "ecf2ae95-d2e6-41b2-819a-836a6fa8c7c5",
341
+ "fontSize": 12,
342
+ "avg_text_length": {
343
+ "num_lines": 1,
344
+ "num_chars_per_line": 19
345
+ },
346
+ "isMultiline": false,
347
+ "originalFontSize": 12,
348
+ "fontFamily": "arial",
349
+ "validation_type": "bank_routing_number"
350
+ },
351
+ {
352
+ "name": "Textbox12",
353
+ "type": "text",
354
+ "signer": "1",
355
+ "x": 339,
356
+ "y": 315,
357
+ "width": 72,
358
+ "height": 14,
359
+ "required": true,
360
+ "api_id": "3cb90a0a-a433-4f30-8af8-8fb4c747b704",
361
+ "fontSize": 12,
362
+ "avg_text_length": {
363
+ "num_lines": 1,
364
+ "num_chars_per_line": 19
365
+ },
366
+ "isMultiline": false,
367
+ "originalFontSize": 12,
368
+ "fontFamily": "arial",
369
+ "validation_type": "social_security_number"
370
+ },
371
+ {
372
+ "name": "Textbox9",
373
+ "type": "text",
374
+ "signer": "1",
375
+ "x": 224,
376
+ "y": 343,
377
+ "width": 72,
378
+ "height": 14,
379
+ "required": true,
380
+ "api_id": "5b9eb331-c97d-435b-a563-d936a9b930c0",
381
+ "fontSize": 12,
382
+ "avg_text_length": {
383
+ "num_lines": 1,
384
+ "num_chars_per_line": 19
385
+ },
386
+ "isMultiline": false,
387
+ "originalFontSize": 12,
388
+ "fontFamily": "arial",
389
+ "validation_type": "bank_account_number"
390
+ },
391
+ {
392
+ "name": "Textbox13",
393
+ "type": "text",
394
+ "signer": "1",
395
+ "x": 339,
396
+ "y": 345,
397
+ "width": 72,
398
+ "height": 14,
399
+ "required": true,
400
+ "api_id": "2b98ce7e-e53a-4cf8-a9f3-d7fb18d88631",
401
+ "fontSize": 12,
402
+ "avg_text_length": {
403
+ "num_lines": 1,
404
+ "num_chars_per_line": 19
405
+ },
406
+ "isMultiline": false,
407
+ "originalFontSize": 12,
408
+ "fontFamily": "arial",
409
+ "validation_type": "employer_identification_number"
410
+ },
411
+ {
412
+ "name": "Textbox5",
413
+ "type": "text",
414
+ "signer": "1",
415
+ "x": 113,
416
+ "y": 350,
417
+ "width": 72,
418
+ "height": 14,
419
+ "required": true,
420
+ "api_id": "5f52c011-2c5f-4143-bf04-4694fb4a0d3f",
421
+ "fontSize": 12,
422
+ "avg_text_length": {
423
+ "num_lines": 1,
424
+ "num_chars_per_line": 19
425
+ },
426
+ "isMultiline": false,
427
+ "originalFontSize": 12,
428
+ "fontFamily": "arial",
429
+ "validation_type": "numbers_only"
430
+ },
431
+ {
432
+ "name": "Textbox6",
433
+ "type": "text",
434
+ "signer": "1",
435
+ "x": 122,
436
+ "y": 374,
437
+ "width": 72,
438
+ "height": 14,
439
+ "required": true,
440
+ "api_id": "47457b7d-b1e8-41a0-93ad-60ba30e64bb1",
441
+ "fontSize": 12,
442
+ "avg_text_length": {
443
+ "num_lines": 1,
444
+ "num_chars_per_line": 19
445
+ },
446
+ "isMultiline": false,
447
+ "originalFontSize": 12,
448
+ "fontFamily": "arial",
449
+ "validation_type": "letters_only"
450
+ },
451
+ {
452
+ "name": "Textbox10",
453
+ "type": "text",
454
+ "signer": "1",
455
+ "x": 234,
456
+ "y": 373,
457
+ "width": 72,
458
+ "height": 14,
459
+ "required": true,
460
+ "api_id": "18e3f994-1675-4d58-9b4a-4f92a2614551",
461
+ "fontSize": 12,
462
+ "avg_text_length": {
463
+ "num_lines": 1,
464
+ "num_chars_per_line": 19
465
+ },
466
+ "isMultiline": false,
467
+ "originalFontSize": 12,
468
+ "fontFamily": "arial",
469
+ "validation_type": "email_address"
470
+ },
471
+ {
472
+ "name": "Textbox14",
473
+ "type": "text",
474
+ "signer": "1",
475
+ "x": 339,
476
+ "y": 376,
477
+ "width": 72,
478
+ "height": 14,
479
+ "required": true,
480
+ "api_id": "9ad4b8cc-bac9-432b-8836-9f80f86fc7e0",
481
+ "fontSize": 12,
482
+ "avg_text_length": {
483
+ "num_lines": 1,
484
+ "num_chars_per_line": 19
485
+ },
486
+ "isMultiline": false,
487
+ "originalFontSize": 12,
488
+ "fontFamily": "arial"
489
+ },
490
+ {
491
+ "name": "Textbox7",
492
+ "type": "text",
493
+ "signer": "1",
494
+ "x": 130,
495
+ "y": 401,
496
+ "width": 72,
497
+ "height": 14,
498
+ "required": true,
499
+ "api_id": "58c5f942-04fb-45f1-9703-5e8411f3a3bb",
500
+ "fontSize": 12,
501
+ "avg_text_length": {
502
+ "num_lines": 1,
503
+ "num_chars_per_line": 19
504
+ },
505
+ "isMultiline": false,
506
+ "originalFontSize": 12,
507
+ "fontFamily": "arial",
508
+ "validation_type": "phone_number"
509
+ },
510
+ {
511
+ "name": "me_now_hyperlink_1",
512
+ "type": "hyperlink",
513
+ "signer": "me_now",
514
+ "x": 434,
515
+ "y": 400,
516
+ "width": 112,
517
+ "height": 14,
518
+ "required": false,
519
+ "api_id": "fd928b56-cf59-40a4-9a90-62f97ffd0ddc",
520
+ "fontSize": 12,
521
+ "avg_text_length": {
522
+ "num_lines": 1,
523
+ "num_chars_per_line": 30
524
+ },
525
+ "isMultiline": false,
526
+ "originalFontSize": 12,
527
+ "fontFamily": "helvetica"
528
+ },
529
+ {
530
+ "name": "Textbox11",
531
+ "type": "text",
532
+ "signer": "1",
533
+ "x": 237,
534
+ "y": 405,
535
+ "width": 72,
536
+ "height": 14,
537
+ "required": true,
538
+ "api_id": "e48c388d-8c26-4f20-848e-f8587a631746",
539
+ "fontSize": 12,
540
+ "avg_text_length": {
541
+ "num_lines": 1,
542
+ "num_chars_per_line": 19
543
+ },
544
+ "isMultiline": false,
545
+ "originalFontSize": 12,
546
+ "fontFamily": "arial",
547
+ "validation_type": "zip_code"
80
548
  }
81
549
  ],
82
- "custom_fields": [
550
+ "static_fields": [
551
+ {
552
+ "name": "me_now_signature_1",
553
+ "type": "signature",
554
+ "signer": "me_now",
555
+ "x": 535,
556
+ "y": 150,
557
+ "width": 108,
558
+ "height": 27,
559
+ "required": false,
560
+ "api_id": "988565fd-6f85-4081-9fa4-5ae51e16dfc9",
561
+ "fontSize": 12
562
+ },
563
+ {
564
+ "name": "me_now_radio_1",
565
+ "type": "checkbox",
566
+ "signer": "me_now",
567
+ "x": 450,
568
+ "y": 428,
569
+ "width": 18,
570
+ "height": 18,
571
+ "required": false,
572
+ "api_id": "f008a911-26c2-4d7c-baef-d82c7e180f7a",
573
+ "fontSize": 12
574
+ },
575
+ {
576
+ "name": "me_now_date_signed_1",
577
+ "type": "text",
578
+ "signer": "me_now",
579
+ "x": 491,
580
+ "y": 466,
581
+ "width": 86,
582
+ "height": 14,
583
+ "required": false,
584
+ "api_id": "1220d8b3-7b2c-4ea7-971a-333e03839922",
585
+ "fontSize": 12
586
+ },
83
587
  {
84
- "name": "Effective Date",
85
- "type": "text"
588
+ "name": "me_now_text_1",
589
+ "type": "text",
590
+ "signer": "me_now",
591
+ "x": 343,
592
+ "y": 509,
593
+ "width": 101,
594
+ "height": 14,
595
+ "required": false,
596
+ "api_id": "0829b343-71d2-4719-b563-808b8997174f",
597
+ "fontSize": 12
86
598
  }
87
599
  ]
88
600
  }
89
601
  ],
602
+ "custom_fields": [
603
+ {
604
+ "name": "merge_field_1",
605
+ "type": "text",
606
+ "x": 417,
607
+ "y": 219,
608
+ "width": 72,
609
+ "height": 15,
610
+ "required": false,
611
+ "api_id": "967c3e5f-2912-4f53-8ea3-c750652d29fc",
612
+ "fontSize": 12,
613
+ "avg_text_length": {
614
+ "num_lines": 1,
615
+ "num_chars_per_line": 19
616
+ },
617
+ "isMultiline": false,
618
+ "originalFontSize": 12,
619
+ "fontFamily": "arial"
620
+ },
621
+ {
622
+ "name": "merge_field_2",
623
+ "type": "checkbox",
624
+ "x": 515,
625
+ "y": 346,
626
+ "width": 18,
627
+ "height": 18,
628
+ "required": false,
629
+ "api_id": "5e8fe02f-51cf-4f0b-b1d9-2b1e4f6ad07f",
630
+ "fontSize": 12
631
+ }
632
+ ],
633
+ "named_form_fields": [
634
+ {
635
+ "name": "Signature1",
636
+ "type": "signature",
637
+ "signer": "1",
638
+ "x": 136,
639
+ "y": 17,
640
+ "width": 108,
641
+ "height": 27,
642
+ "required": true,
643
+ "api_id": "8b6d78a5-0870-4f46-af9c-b78b54a49348",
644
+ "fontSize": 12
645
+ },
646
+ {
647
+ "name": "Textbox1",
648
+ "type": "text",
649
+ "signer": "1",
650
+ "x": 328,
651
+ "y": 17,
652
+ "width": 144,
653
+ "height": 14,
654
+ "required": true,
655
+ "api_id": "7ec10d80-53c9-433b-b252-0b8daa90a8e0",
656
+ "fontSize": 12,
657
+ "avg_text_length": {
658
+ "num_lines": 1,
659
+ "num_chars_per_line": 38
660
+ },
661
+ "isMultiline": false,
662
+ "originalFontSize": 12,
663
+ "fontFamily": "arial"
664
+ },
665
+ {
666
+ "name": "Textbox2",
667
+ "type": "text",
668
+ "signer": "1",
669
+ "x": 328,
670
+ "y": 48,
671
+ "width": 144,
672
+ "height": 14,
673
+ "required": true,
674
+ "api_id": "6574e6ad-7dac-49a2-9d56-650d7c5ade6e",
675
+ "fontSize": 12,
676
+ "avg_text_length": {
677
+ "num_lines": 1,
678
+ "num_chars_per_line": 38
679
+ },
680
+ "isMultiline": false,
681
+ "originalFontSize": 12,
682
+ "fontFamily": "arial"
683
+ },
684
+ {
685
+ "name": "Initial1",
686
+ "type": "initials",
687
+ "signer": "1",
688
+ "x": 148,
689
+ "y": 66,
690
+ "width": 72,
691
+ "height": 27,
692
+ "required": true,
693
+ "api_id": "30f41f54-c7f3-46c3-a29a-bb76ec40b552",
694
+ "fontSize": 12
695
+ },
696
+ {
697
+ "name": "Checkbox1",
698
+ "type": "checkbox",
699
+ "signer": "1",
700
+ "x": 325,
701
+ "y": 111,
702
+ "width": 18,
703
+ "height": 18,
704
+ "required": false,
705
+ "api_id": "d4d6ada9-e1dc-419e-bc0d-1478da694449",
706
+ "group": "75a6e4b5fea47",
707
+ "fontSize": 12
708
+ },
709
+ {
710
+ "name": "Dropdown1",
711
+ "type": "dropdown",
712
+ "signer": "1",
713
+ "x": 423,
714
+ "y": 108,
715
+ "width": 70,
716
+ "height": 14,
717
+ "required": true,
718
+ "api_id": "5863be5e-ce5a-4c9d-aabe-c221914d73c2",
719
+ "fontSize": 12
720
+ },
721
+ {
722
+ "name": "DateSigned1",
723
+ "type": "date_signed",
724
+ "signer": "1",
725
+ "x": 150,
726
+ "y": 119,
727
+ "width": 105,
728
+ "height": 18,
729
+ "required": true,
730
+ "api_id": "9f6d3722-6db7-46da-8fac-3bc09f510262",
731
+ "fontSize": 12
732
+ },
733
+ {
734
+ "name": "Checkbox2",
735
+ "type": "checkbox",
736
+ "signer": "1",
737
+ "x": 325,
738
+ "y": 135,
739
+ "width": 18,
740
+ "height": 18,
741
+ "required": false,
742
+ "api_id": "edd732b8-b158-4714-a87b-503637d09ded",
743
+ "group": "75a6e4b5fea47",
744
+ "fontSize": 12
745
+ },
746
+ {
747
+ "name": "FullName1",
748
+ "type": "text",
749
+ "signer": "1",
750
+ "x": 144,
751
+ "y": 158,
752
+ "width": 72,
753
+ "height": 14,
754
+ "required": true,
755
+ "api_id": "62fd3f85-4808-4011-8eae-a14ebe9105ef",
756
+ "fontSize": 12,
757
+ "avg_text_length": {
758
+ "num_lines": 1,
759
+ "num_chars_per_line": 19
760
+ },
761
+ "isMultiline": false,
762
+ "originalFontSize": 12,
763
+ "fontFamily": "arial"
764
+ },
765
+ {
766
+ "name": "Email1",
767
+ "type": "text",
768
+ "signer": "1",
769
+ "x": 133,
770
+ "y": 191,
771
+ "width": 144,
772
+ "height": 14,
773
+ "required": true,
774
+ "api_id": "a1c9bc6b-d498-4787-86e0-30ea779f06a7",
775
+ "fontSize": 12,
776
+ "avg_text_length": {
777
+ "num_lines": 1,
778
+ "num_chars_per_line": 38
779
+ },
780
+ "isMultiline": false,
781
+ "originalFontSize": 12,
782
+ "fontFamily": "arial",
783
+ "validation_type": "email_address"
784
+ },
785
+ {
786
+ "name": "RadioItem1",
787
+ "type": "radio",
788
+ "signer": "1",
789
+ "x": 307,
790
+ "y": 211,
791
+ "width": 18,
792
+ "height": 18,
793
+ "required": false,
794
+ "api_id": "fc8a1277-f757-47a2-aeea-5113fa81f2d5",
795
+ "group": "0831822584086",
796
+ "fontSize": 12
797
+ },
798
+ {
799
+ "name": "Company1",
800
+ "type": "text",
801
+ "signer": "1",
802
+ "x": 128,
803
+ "y": 221,
804
+ "width": 144,
805
+ "height": 14,
806
+ "required": true,
807
+ "api_id": "279b4e7f-e71f-426d-845c-6308cddde379",
808
+ "fontSize": 12,
809
+ "avg_text_length": {
810
+ "num_lines": 1,
811
+ "num_chars_per_line": 38
812
+ },
813
+ "isMultiline": false,
814
+ "originalFontSize": 12,
815
+ "fontFamily": "arial"
816
+ },
817
+ {
818
+ "name": "Title1",
819
+ "type": "text",
820
+ "signer": "1",
821
+ "x": 127,
822
+ "y": 250,
823
+ "width": 144,
824
+ "height": 14,
825
+ "required": true,
826
+ "api_id": "8809e39a-a46c-4dae-aaf9-06fc6355d80f",
827
+ "fontSize": 12,
828
+ "avg_text_length": {
829
+ "num_lines": 1,
830
+ "num_chars_per_line": 38
831
+ },
832
+ "isMultiline": false,
833
+ "originalFontSize": 12,
834
+ "fontFamily": "arial"
835
+ },
836
+ {
837
+ "name": "RadioItem2",
838
+ "type": "radio",
839
+ "signer": "1",
840
+ "x": 307,
841
+ "y": 253,
842
+ "width": 18,
843
+ "height": 18,
844
+ "required": false,
845
+ "api_id": "f7b6b70d-0522-4ab7-bfec-b86f147c8be3",
846
+ "group": "0831822584086",
847
+ "fontSize": 12
848
+ },
849
+ {
850
+ "name": "Textbox3",
851
+ "type": "text",
852
+ "signer": "1",
853
+ "x": 410,
854
+ "y": 279,
855
+ "width": 144,
856
+ "height": 14,
857
+ "required": true,
858
+ "api_id": "bad7512a-e22b-46ed-ba03-123db0eda932",
859
+ "fontSize": 12,
860
+ "avg_text_length": {
861
+ "num_lines": 1,
862
+ "num_chars_per_line": 38
863
+ },
864
+ "isMultiline": false,
865
+ "originalFontSize": 12,
866
+ "fontFamily": "arial"
867
+ },
868
+ {
869
+ "name": "Textbox4",
870
+ "type": "text",
871
+ "signer": "1",
872
+ "x": 101,
873
+ "y": 314,
874
+ "width": 72,
875
+ "height": 14,
876
+ "required": true,
877
+ "api_id": "368ed029-bc93-4f92-8f7a-14c3bf8109b5",
878
+ "fontSize": 12,
879
+ "avg_text_length": {
880
+ "num_lines": 1,
881
+ "num_chars_per_line": 19
882
+ },
883
+ "isMultiline": false,
884
+ "originalFontSize": 12,
885
+ "fontFamily": "arial",
886
+ "validation_type": "custom_regex"
887
+ },
888
+ {
889
+ "name": "Textbox8",
890
+ "type": "text",
891
+ "signer": "1",
892
+ "x": 218,
893
+ "y": 313,
894
+ "width": 72,
895
+ "height": 14,
896
+ "required": true,
897
+ "api_id": "ecf2ae95-d2e6-41b2-819a-836a6fa8c7c5",
898
+ "fontSize": 12,
899
+ "avg_text_length": {
900
+ "num_lines": 1,
901
+ "num_chars_per_line": 19
902
+ },
903
+ "isMultiline": false,
904
+ "originalFontSize": 12,
905
+ "fontFamily": "arial",
906
+ "validation_type": "bank_routing_number"
907
+ },
908
+ {
909
+ "name": "Textbox12",
910
+ "type": "text",
911
+ "signer": "1",
912
+ "x": 339,
913
+ "y": 315,
914
+ "width": 72,
915
+ "height": 14,
916
+ "required": true,
917
+ "api_id": "3cb90a0a-a433-4f30-8af8-8fb4c747b704",
918
+ "fontSize": 12,
919
+ "avg_text_length": {
920
+ "num_lines": 1,
921
+ "num_chars_per_line": 19
922
+ },
923
+ "isMultiline": false,
924
+ "originalFontSize": 12,
925
+ "fontFamily": "arial",
926
+ "validation_type": "social_security_number"
927
+ },
928
+ {
929
+ "name": "Textbox9",
930
+ "type": "text",
931
+ "signer": "1",
932
+ "x": 224,
933
+ "y": 343,
934
+ "width": 72,
935
+ "height": 14,
936
+ "required": true,
937
+ "api_id": "5b9eb331-c97d-435b-a563-d936a9b930c0",
938
+ "fontSize": 12,
939
+ "avg_text_length": {
940
+ "num_lines": 1,
941
+ "num_chars_per_line": 19
942
+ },
943
+ "isMultiline": false,
944
+ "originalFontSize": 12,
945
+ "fontFamily": "arial",
946
+ "validation_type": "bank_account_number"
947
+ },
948
+ {
949
+ "name": "Textbox13",
950
+ "type": "text",
951
+ "signer": "1",
952
+ "x": 339,
953
+ "y": 345,
954
+ "width": 72,
955
+ "height": 14,
956
+ "required": true,
957
+ "api_id": "2b98ce7e-e53a-4cf8-a9f3-d7fb18d88631",
958
+ "fontSize": 12,
959
+ "avg_text_length": {
960
+ "num_lines": 1,
961
+ "num_chars_per_line": 19
962
+ },
963
+ "isMultiline": false,
964
+ "originalFontSize": 12,
965
+ "fontFamily": "arial",
966
+ "validation_type": "employer_identification_number"
967
+ },
968
+ {
969
+ "name": "Textbox5",
970
+ "type": "text",
971
+ "signer": "1",
972
+ "x": 113,
973
+ "y": 350,
974
+ "width": 72,
975
+ "height": 14,
976
+ "required": true,
977
+ "api_id": "5f52c011-2c5f-4143-bf04-4694fb4a0d3f",
978
+ "fontSize": 12,
979
+ "avg_text_length": {
980
+ "num_lines": 1,
981
+ "num_chars_per_line": 19
982
+ },
983
+ "isMultiline": false,
984
+ "originalFontSize": 12,
985
+ "fontFamily": "arial",
986
+ "validation_type": "numbers_only"
987
+ },
988
+ {
989
+ "name": "Textbox6",
990
+ "type": "text",
991
+ "signer": "1",
992
+ "x": 122,
993
+ "y": 374,
994
+ "width": 72,
995
+ "height": 14,
996
+ "required": true,
997
+ "api_id": "47457b7d-b1e8-41a0-93ad-60ba30e64bb1",
998
+ "fontSize": 12,
999
+ "avg_text_length": {
1000
+ "num_lines": 1,
1001
+ "num_chars_per_line": 19
1002
+ },
1003
+ "isMultiline": false,
1004
+ "originalFontSize": 12,
1005
+ "fontFamily": "arial",
1006
+ "validation_type": "letters_only"
1007
+ },
1008
+ {
1009
+ "name": "Textbox10",
1010
+ "type": "text",
1011
+ "signer": "1",
1012
+ "x": 234,
1013
+ "y": 373,
1014
+ "width": 72,
1015
+ "height": 14,
1016
+ "required": true,
1017
+ "api_id": "18e3f994-1675-4d58-9b4a-4f92a2614551",
1018
+ "fontSize": 12,
1019
+ "avg_text_length": {
1020
+ "num_lines": 1,
1021
+ "num_chars_per_line": 19
1022
+ },
1023
+ "isMultiline": false,
1024
+ "originalFontSize": 12,
1025
+ "fontFamily": "arial",
1026
+ "validation_type": "email_address"
1027
+ },
1028
+ {
1029
+ "name": "Textbox14",
1030
+ "type": "text",
1031
+ "signer": "1",
1032
+ "x": 339,
1033
+ "y": 376,
1034
+ "width": 72,
1035
+ "height": 14,
1036
+ "required": true,
1037
+ "api_id": "9ad4b8cc-bac9-432b-8836-9f80f86fc7e0",
1038
+ "fontSize": 12,
1039
+ "avg_text_length": {
1040
+ "num_lines": 1,
1041
+ "num_chars_per_line": 19
1042
+ },
1043
+ "isMultiline": false,
1044
+ "originalFontSize": 12,
1045
+ "fontFamily": "arial"
1046
+ },
1047
+ {
1048
+ "name": "Textbox7",
1049
+ "type": "text",
1050
+ "signer": "1",
1051
+ "x": 130,
1052
+ "y": 401,
1053
+ "width": 72,
1054
+ "height": 14,
1055
+ "required": true,
1056
+ "api_id": "58c5f942-04fb-45f1-9703-5e8411f3a3bb",
1057
+ "fontSize": 12,
1058
+ "avg_text_length": {
1059
+ "num_lines": 1,
1060
+ "num_chars_per_line": 19
1061
+ },
1062
+ "isMultiline": false,
1063
+ "originalFontSize": 12,
1064
+ "fontFamily": "arial",
1065
+ "validation_type": "phone_number"
1066
+ },
1067
+ {
1068
+ "name": "me_now_hyperlink_1",
1069
+ "type": "hyperlink",
1070
+ "signer": "me_now",
1071
+ "x": 434,
1072
+ "y": 400,
1073
+ "width": 112,
1074
+ "height": 14,
1075
+ "required": false,
1076
+ "api_id": "fd928b56-cf59-40a4-9a90-62f97ffd0ddc",
1077
+ "fontSize": 12,
1078
+ "avg_text_length": {
1079
+ "num_lines": 1,
1080
+ "num_chars_per_line": 30
1081
+ },
1082
+ "isMultiline": false,
1083
+ "originalFontSize": 12,
1084
+ "fontFamily": "helvetica"
1085
+ },
1086
+ {
1087
+ "name": "Textbox11",
1088
+ "type": "text",
1089
+ "signer": "1",
1090
+ "x": 237,
1091
+ "y": 405,
1092
+ "width": 72,
1093
+ "height": 14,
1094
+ "required": true,
1095
+ "api_id": "e48c388d-8c26-4f20-848e-f8587a631746",
1096
+ "fontSize": 12,
1097
+ "avg_text_length": {
1098
+ "num_lines": 1,
1099
+ "num_chars_per_line": 19
1100
+ },
1101
+ "isMultiline": false,
1102
+ "originalFontSize": 12,
1103
+ "fontFamily": "arial",
1104
+ "validation_type": "zip_code"
1105
+ }
1106
+ ],
90
1107
  "accounts": [
91
1108
  {
92
1109
  "account_id": "5008b25c7f67153e57d5a357b1687968068fb465",
93
- "email_address": "me@dropboxsign.com"
1110
+ "email_address": "me@dropboxsign.com",
1111
+ "is_locked": false,
1112
+ "is_paid_hs": false,
1113
+ "is_paid_hf": false
94
1114
  },
95
1115
  {
96
1116
  "account_id": "",
97
- "email_address": "teammate@dropboxsign.com"
1117
+ "email_address": "teammate@dropboxsign.com",
1118
+ "is_locked": false,
1119
+ "is_paid_hs": false,
1120
+ "is_paid_hf": false
98
1121
  }
99
1122
  ]
100
1123
  }