dropbox-sign 1.0.1 → 1.1.1

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