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
@@ -16,7 +16,8 @@
16
16
  "metadata": {},
17
17
  "signer_roles": [
18
18
  {
19
- "name": "Client"
19
+ "name": "Client",
20
+ "order": 0
20
21
  }
21
22
  ],
22
23
  "cc_roles": [
@@ -32,8 +33,21 @@
32
33
  "form_fields": [],
33
34
  "custom_fields": [
34
35
  {
35
- "name": "Cost",
36
- "type": "text"
36
+ "name": "merge_field_1",
37
+ "type": "text",
38
+ "x": 417,
39
+ "y": 219,
40
+ "width": 72,
41
+ "height": 15,
42
+ "required": false,
43
+ "api_id": "967c3e5f-2912-4f53-8ea3-c750652d29fc",
44
+ "avg_text_length": {
45
+ "num_lines": 1,
46
+ "num_chars_per_line": 19
47
+ },
48
+ "isMultiline": false,
49
+ "originalFontSize": 12,
50
+ "fontFamily": "arial"
37
51
  }
38
52
  ]
39
53
  }
@@ -41,7 +55,10 @@
41
55
  "accounts": [
42
56
  {
43
57
  "account_id": "5008b25c7f67153e57d5a357b1687968068fb465",
44
- "email_address": "me@dropboxsign.com"
58
+ "email_address": "me@dropboxsign.com",
59
+ "is_locked": false,
60
+ "is_paid_hs": false,
61
+ "is_paid_hf": false
45
62
  }
46
63
  ]
47
64
  },
@@ -72,61 +89,480 @@
72
89
  "index": 0,
73
90
  "name": "mutual_nda.pdf",
74
91
  "field_groups": [],
92
+ "custom_fields": [
93
+ {
94
+ "name": "merge_field_1",
95
+ "type": "text",
96
+ "x": 417,
97
+ "y": 219,
98
+ "width": 72,
99
+ "height": 15,
100
+ "required": false,
101
+ "api_id": "967c3e5f-2912-4f53-8ea3-c750652d29fc",
102
+ "avg_text_length": {
103
+ "num_lines": 1,
104
+ "num_chars_per_line": 19
105
+ },
106
+ "isMultiline": false,
107
+ "originalFontSize": 12,
108
+ "fontFamily": "arial"
109
+ },
110
+ {
111
+ "name": "merge_field_2",
112
+ "type": "checkbox",
113
+ "x": 515,
114
+ "y": 346,
115
+ "width": 18,
116
+ "height": 18,
117
+ "required": false,
118
+ "api_id": "5e8fe02f-51cf-4f0b-b1d9-2b1e4f6ad07f"
119
+ }
120
+ ],
75
121
  "form_fields": [
76
122
  {
77
- "api_id": "0ec7a7_1",
78
- "name": "VendorName",
123
+ "name": "Signature1",
124
+ "type": "signature",
125
+ "signer": "1",
126
+ "x": 136,
127
+ "y": 17,
128
+ "width": 108,
129
+ "height": 27,
130
+ "required": true,
131
+ "api_id": "8b6d78a5-0870-4f46-af9c-b78b54a49348"
132
+ },
133
+ {
134
+ "name": "Textbox1",
79
135
  "type": "text",
80
- "x": 160,
81
- "y": 141,
82
- "width": 80,
83
- "height": 30,
84
- "required": true
136
+ "signer": "1",
137
+ "x": 328,
138
+ "y": 17,
139
+ "width": 144,
140
+ "height": 14,
141
+ "required": true,
142
+ "api_id": "7ec10d80-53c9-433b-b252-0b8daa90a8e0",
143
+ "avg_text_length": {
144
+ "num_lines": 1,
145
+ "num_chars_per_line": 38
146
+ },
147
+ "isMultiline": false,
148
+ "originalFontSize": 12,
149
+ "fontFamily": "arial"
85
150
  },
86
151
  {
87
- "api_id": "0ec7a7_2",
88
- "name": "VendorTitle",
152
+ "name": "Textbox2",
89
153
  "type": "text",
90
- "x": 160,
91
- "y": 181,
92
- "width": 80,
93
- "height": 30,
94
- "required": true
154
+ "signer": "1",
155
+ "x": 328,
156
+ "y": 48,
157
+ "width": 144,
158
+ "height": 14,
159
+ "required": true,
160
+ "api_id": "6574e6ad-7dac-49a2-9d56-650d7c5ade6e",
161
+ "avg_text_length": {
162
+ "num_lines": 1,
163
+ "num_chars_per_line": 38
164
+ },
165
+ "isMultiline": false,
166
+ "originalFontSize": 12,
167
+ "fontFamily": "arial"
168
+ },
169
+ {
170
+ "name": "Initial1",
171
+ "type": "initials",
172
+ "signer": "1",
173
+ "x": 148,
174
+ "y": 66,
175
+ "width": 72,
176
+ "height": 27,
177
+ "required": true,
178
+ "api_id": "30f41f54-c7f3-46c3-a29a-bb76ec40b552"
179
+ },
180
+ {
181
+ "name": "Checkbox1",
182
+ "type": "checkbox",
183
+ "signer": "1",
184
+ "x": 325,
185
+ "y": 111,
186
+ "width": 18,
187
+ "height": 18,
188
+ "required": false,
189
+ "api_id": "d4d6ada9-e1dc-419e-bc0d-1478da694449",
190
+ "group": "75a6e4b5fea47"
95
191
  },
96
192
  {
97
- "api_id": "0ec7a7_3",
98
- "name": "ManagerName",
193
+ "name": "Dropdown1",
194
+ "type": "dropdown",
195
+ "signer": "1",
196
+ "x": 423,
197
+ "y": 108,
198
+ "width": 70,
199
+ "height": 14,
200
+ "required": true,
201
+ "api_id": "5863be5e-ce5a-4c9d-aabe-c221914d73c2"
202
+ },
203
+ {
204
+ "name": "DateSigned1",
205
+ "type": "date_signed",
206
+ "signer": "1",
207
+ "x": 150,
208
+ "y": 119,
209
+ "width": 105,
210
+ "height": 18,
211
+ "required": true,
212
+ "api_id": "9f6d3722-6db7-46da-8fac-3bc09f510262"
213
+ },
214
+ {
215
+ "name": "Checkbox2",
216
+ "type": "checkbox",
217
+ "signer": "1",
218
+ "x": 325,
219
+ "y": 135,
220
+ "width": 18,
221
+ "height": 18,
222
+ "required": false,
223
+ "api_id": "edd732b8-b158-4714-a87b-503637d09ded",
224
+ "group": "75a6e4b5fea47"
225
+ },
226
+ {
227
+ "name": "FullName1",
228
+ "type": "text",
229
+ "signer": "1",
230
+ "x": 144,
231
+ "y": 158,
232
+ "width": 72,
233
+ "height": 14,
234
+ "required": true,
235
+ "api_id": "62fd3f85-4808-4011-8eae-a14ebe9105ef",
236
+ "avg_text_length": {
237
+ "num_lines": 1,
238
+ "num_chars_per_line": 19
239
+ },
240
+ "isMultiline": false,
241
+ "originalFontSize": 12,
242
+ "fontFamily": "arial"
243
+ },
244
+ {
245
+ "name": "Email1",
246
+ "type": "text",
247
+ "signer": "1",
248
+ "x": 133,
249
+ "y": 191,
250
+ "width": 144,
251
+ "height": 14,
252
+ "required": true,
253
+ "api_id": "a1c9bc6b-d498-4787-86e0-30ea779f06a7",
254
+ "avg_text_length": {
255
+ "num_lines": 1,
256
+ "num_chars_per_line": 38
257
+ },
258
+ "isMultiline": false,
259
+ "originalFontSize": 12,
260
+ "fontFamily": "arial",
261
+ "validation_type": "email_address"
262
+ },
263
+ {
264
+ "name": "RadioItem1",
265
+ "type": "radio",
266
+ "signer": "1",
267
+ "x": 307,
268
+ "y": 211,
269
+ "width": 18,
270
+ "height": 18,
271
+ "required": false,
272
+ "api_id": "fc8a1277-f757-47a2-aeea-5113fa81f2d5",
273
+ "group": "0831822584086"
274
+ },
275
+ {
276
+ "name": "Company1",
99
277
  "type": "text",
100
- "x": 160,
278
+ "signer": "1",
279
+ "x": 128,
101
280
  "y": 221,
102
- "width": 80,
103
- "height": 30,
104
- "required": true
281
+ "width": 144,
282
+ "height": 14,
283
+ "required": true,
284
+ "api_id": "279b4e7f-e71f-426d-845c-6308cddde379",
285
+ "avg_text_length": {
286
+ "num_lines": 1,
287
+ "num_chars_per_line": 38
288
+ },
289
+ "isMultiline": false,
290
+ "originalFontSize": 12,
291
+ "fontFamily": "arial"
105
292
  },
106
293
  {
107
- "api_id": "0ec7a7_4",
108
- "name": "ManagerTitle",
294
+ "name": "Title1",
109
295
  "type": "text",
110
- "x": 160,
111
- "y": 251,
112
- "width": 80,
113
- "height": 30,
114
- "required": true
296
+ "signer": "1",
297
+ "x": 127,
298
+ "y": 250,
299
+ "width": 144,
300
+ "height": 14,
301
+ "required": true,
302
+ "api_id": "8809e39a-a46c-4dae-aaf9-06fc6355d80f",
303
+ "avg_text_length": {
304
+ "num_lines": 1,
305
+ "num_chars_per_line": 38
306
+ },
307
+ "isMultiline": false,
308
+ "originalFontSize": 12,
309
+ "fontFamily": "arial"
115
310
  },
116
311
  {
117
- "api_id": "0ec7a7_5",
118
- "name": "DateSigned",
119
- "type": "date_signed",
120
- "x": 523,
121
- "y": 28,
122
- "width": 105,
123
- "height": 16
124
- }
125
- ],
126
- "custom_fields": [
312
+ "name": "RadioItem2",
313
+ "type": "radio",
314
+ "signer": "1",
315
+ "x": 307,
316
+ "y": 253,
317
+ "width": 18,
318
+ "height": 18,
319
+ "required": false,
320
+ "api_id": "f7b6b70d-0522-4ab7-bfec-b86f147c8be3",
321
+ "group": "0831822584086"
322
+ },
127
323
  {
128
- "name": "Effective Date",
129
- "type": "text"
324
+ "name": "Textbox3",
325
+ "type": "text",
326
+ "signer": "1",
327
+ "x": 410,
328
+ "y": 279,
329
+ "width": 144,
330
+ "height": 14,
331
+ "required": true,
332
+ "api_id": "bad7512a-e22b-46ed-ba03-123db0eda932",
333
+ "avg_text_length": {
334
+ "num_lines": 1,
335
+ "num_chars_per_line": 38
336
+ },
337
+ "isMultiline": false,
338
+ "originalFontSize": 12,
339
+ "fontFamily": "arial"
340
+ },
341
+ {
342
+ "name": "Textbox4",
343
+ "type": "text",
344
+ "signer": "1",
345
+ "x": 101,
346
+ "y": 314,
347
+ "width": 72,
348
+ "height": 14,
349
+ "required": true,
350
+ "api_id": "368ed029-bc93-4f92-8f7a-14c3bf8109b5",
351
+ "avg_text_length": {
352
+ "num_lines": 1,
353
+ "num_chars_per_line": 19
354
+ },
355
+ "isMultiline": false,
356
+ "originalFontSize": 12,
357
+ "fontFamily": "arial",
358
+ "validation_type": "custom_regex"
359
+ },
360
+ {
361
+ "name": "Textbox8",
362
+ "type": "text",
363
+ "signer": "1",
364
+ "x": 218,
365
+ "y": 313,
366
+ "width": 72,
367
+ "height": 14,
368
+ "required": true,
369
+ "api_id": "ecf2ae95-d2e6-41b2-819a-836a6fa8c7c5",
370
+ "avg_text_length": {
371
+ "num_lines": 1,
372
+ "num_chars_per_line": 19
373
+ },
374
+ "isMultiline": false,
375
+ "originalFontSize": 12,
376
+ "fontFamily": "arial",
377
+ "validation_type": "bank_routing_number"
378
+ },
379
+ {
380
+ "name": "Textbox12",
381
+ "type": "text",
382
+ "signer": "1",
383
+ "x": 339,
384
+ "y": 315,
385
+ "width": 72,
386
+ "height": 14,
387
+ "required": true,
388
+ "api_id": "3cb90a0a-a433-4f30-8af8-8fb4c747b704",
389
+ "avg_text_length": {
390
+ "num_lines": 1,
391
+ "num_chars_per_line": 19
392
+ },
393
+ "isMultiline": false,
394
+ "originalFontSize": 12,
395
+ "fontFamily": "arial",
396
+ "validation_type": "social_security_number"
397
+ },
398
+ {
399
+ "name": "Textbox9",
400
+ "type": "text",
401
+ "signer": "1",
402
+ "x": 224,
403
+ "y": 343,
404
+ "width": 72,
405
+ "height": 14,
406
+ "required": true,
407
+ "api_id": "5b9eb331-c97d-435b-a563-d936a9b930c0",
408
+ "avg_text_length": {
409
+ "num_lines": 1,
410
+ "num_chars_per_line": 19
411
+ },
412
+ "isMultiline": false,
413
+ "originalFontSize": 12,
414
+ "fontFamily": "arial",
415
+ "validation_type": "bank_account_number"
416
+ },
417
+ {
418
+ "name": "Textbox13",
419
+ "type": "text",
420
+ "signer": "1",
421
+ "x": 339,
422
+ "y": 345,
423
+ "width": 72,
424
+ "height": 14,
425
+ "required": true,
426
+ "api_id": "2b98ce7e-e53a-4cf8-a9f3-d7fb18d88631",
427
+ "avg_text_length": {
428
+ "num_lines": 1,
429
+ "num_chars_per_line": 19
430
+ },
431
+ "isMultiline": false,
432
+ "originalFontSize": 12,
433
+ "fontFamily": "arial",
434
+ "validation_type": "employer_identification_number"
435
+ },
436
+ {
437
+ "name": "Textbox5",
438
+ "type": "text",
439
+ "signer": "1",
440
+ "x": 113,
441
+ "y": 350,
442
+ "width": 72,
443
+ "height": 14,
444
+ "required": true,
445
+ "api_id": "5f52c011-2c5f-4143-bf04-4694fb4a0d3f",
446
+ "avg_text_length": {
447
+ "num_lines": 1,
448
+ "num_chars_per_line": 19
449
+ },
450
+ "isMultiline": false,
451
+ "originalFontSize": 12,
452
+ "fontFamily": "arial",
453
+ "validation_type": "numbers_only"
454
+ },
455
+ {
456
+ "name": "Textbox6",
457
+ "type": "text",
458
+ "signer": "1",
459
+ "x": 122,
460
+ "y": 374,
461
+ "width": 72,
462
+ "height": 14,
463
+ "required": true,
464
+ "api_id": "47457b7d-b1e8-41a0-93ad-60ba30e64bb1",
465
+ "avg_text_length": {
466
+ "num_lines": 1,
467
+ "num_chars_per_line": 19
468
+ },
469
+ "isMultiline": false,
470
+ "originalFontSize": 12,
471
+ "fontFamily": "arial",
472
+ "validation_type": "letters_only"
473
+ },
474
+ {
475
+ "name": "Textbox10",
476
+ "type": "text",
477
+ "signer": "1",
478
+ "x": 234,
479
+ "y": 373,
480
+ "width": 72,
481
+ "height": 14,
482
+ "required": true,
483
+ "api_id": "18e3f994-1675-4d58-9b4a-4f92a2614551",
484
+ "avg_text_length": {
485
+ "num_lines": 1,
486
+ "num_chars_per_line": 19
487
+ },
488
+ "isMultiline": false,
489
+ "originalFontSize": 12,
490
+ "fontFamily": "arial",
491
+ "validation_type": "email_address"
492
+ },
493
+ {
494
+ "name": "Textbox14",
495
+ "type": "text",
496
+ "signer": "1",
497
+ "x": 339,
498
+ "y": 376,
499
+ "width": 72,
500
+ "height": 14,
501
+ "required": true,
502
+ "api_id": "9ad4b8cc-bac9-432b-8836-9f80f86fc7e0",
503
+ "avg_text_length": {
504
+ "num_lines": 1,
505
+ "num_chars_per_line": 19
506
+ },
507
+ "isMultiline": false,
508
+ "originalFontSize": 12,
509
+ "fontFamily": "arial"
510
+ },
511
+ {
512
+ "name": "Textbox7",
513
+ "type": "text",
514
+ "signer": "1",
515
+ "x": 130,
516
+ "y": 401,
517
+ "width": 72,
518
+ "height": 14,
519
+ "required": true,
520
+ "api_id": "58c5f942-04fb-45f1-9703-5e8411f3a3bb",
521
+ "avg_text_length": {
522
+ "num_lines": 1,
523
+ "num_chars_per_line": 19
524
+ },
525
+ "isMultiline": false,
526
+ "originalFontSize": 12,
527
+ "fontFamily": "arial",
528
+ "validation_type": "phone_number"
529
+ },
530
+ {
531
+ "name": "me_now_hyperlink_1",
532
+ "type": "hyperlink",
533
+ "signer": "me_now",
534
+ "x": 434,
535
+ "y": 400,
536
+ "width": 112,
537
+ "height": 14,
538
+ "required": false,
539
+ "api_id": "fd928b56-cf59-40a4-9a90-62f97ffd0ddc",
540
+ "avg_text_length": {
541
+ "num_lines": 1,
542
+ "num_chars_per_line": 30
543
+ },
544
+ "isMultiline": false,
545
+ "originalFontSize": 12,
546
+ "fontFamily": "helvetica"
547
+ },
548
+ {
549
+ "name": "Textbox11",
550
+ "type": "text",
551
+ "signer": "1",
552
+ "x": 237,
553
+ "y": 405,
554
+ "width": 72,
555
+ "height": 14,
556
+ "required": true,
557
+ "api_id": "e48c388d-8c26-4f20-848e-f8587a631746",
558
+ "avg_text_length": {
559
+ "num_lines": 1,
560
+ "num_chars_per_line": 19
561
+ },
562
+ "isMultiline": false,
563
+ "originalFontSize": 12,
564
+ "fontFamily": "arial",
565
+ "validation_type": "zip_code"
130
566
  }
131
567
  ]
132
568
  }
@@ -134,7 +570,10 @@
134
570
  "accounts": [
135
571
  {
136
572
  "account_id": "5008b25c7f67153e57d5a357b1687968068fb465",
137
- "email_address": "me@dropboxsign.com"
573
+ "email_address": "me@dropboxsign.com",
574
+ "is_locked": false,
575
+ "is_paid_hs": false,
576
+ "is_paid_hf": false
138
577
  }
139
578
  ]
140
579
  }