dropbox-sign 1.6.1 → 1.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/README.md +15 -5
  4. data/VERSION +1 -1
  5. data/docs/AccountResponseQuotas.md +1 -1
  6. data/docs/BulkSendJobGetResponseSignatureRequests.md +1 -1
  7. data/docs/FaxApi.md +364 -0
  8. data/docs/FaxGetResponse.md +11 -0
  9. data/docs/FaxListResponse.md +11 -0
  10. data/docs/FaxResponse.md +20 -0
  11. data/docs/FaxResponseTransmission.md +12 -0
  12. data/docs/FaxSendRequest.md +18 -0
  13. data/docs/OAuthTokenRefreshRequest.md +2 -0
  14. data/docs/SignatureRequestApi.md +1 -1
  15. data/docs/SignatureRequestResponse.md +1 -1
  16. data/docs/SignatureRequestResponseDataValueInitials.md +1 -0
  17. data/docs/SignatureRequestResponseDataValueSignature.md +1 -0
  18. data/docs/SubWhiteLabelingOptions.md +12 -12
  19. data/docs/TemplateApi.md +3 -3
  20. data/docs/TemplateResponse.md +3 -2
  21. data/docs/TemplateResponseDocumentFormFieldBase.md +0 -1
  22. data/docs/TemplateResponseDocumentFormFieldCheckbox.md +1 -0
  23. data/docs/TemplateResponseDocumentFormFieldDateSigned.md +1 -0
  24. data/docs/TemplateResponseDocumentFormFieldDropdown.md +1 -0
  25. data/docs/TemplateResponseDocumentFormFieldHyperlink.md +1 -0
  26. data/docs/TemplateResponseDocumentFormFieldInitials.md +1 -0
  27. data/docs/TemplateResponseDocumentFormFieldRadio.md +1 -0
  28. data/docs/TemplateResponseDocumentFormFieldSignature.md +1 -0
  29. data/docs/TemplateResponseDocumentFormFieldText.md +1 -0
  30. data/examples/FaxDelete.rb +14 -0
  31. data/examples/FaxFiles.rb +17 -0
  32. data/examples/FaxGet.rb +17 -0
  33. data/examples/FaxList.rb +18 -0
  34. data/examples/FaxSend.rb +25 -0
  35. data/lib/dropbox-sign/api/fax_api.rb +495 -0
  36. data/lib/dropbox-sign/api/o_auth_api.rb +28 -0
  37. data/lib/dropbox-sign/api/signature_request_api.rb +2 -2
  38. data/lib/dropbox-sign/api/template_api.rb +2 -2
  39. data/lib/dropbox-sign/models/account_response_quotas.rb +1 -1
  40. data/lib/dropbox-sign/models/api_app_response_o_auth.rb +2 -1
  41. data/lib/dropbox-sign/models/bulk_send_job_get_response_signature_requests.rb +10 -7
  42. data/lib/dropbox-sign/models/fax_get_response.rb +263 -0
  43. data/lib/dropbox-sign/models/fax_list_response.rb +267 -0
  44. data/lib/dropbox-sign/models/fax_response.rb +403 -0
  45. data/lib/dropbox-sign/models/fax_response_transmission.rb +312 -0
  46. data/lib/dropbox-sign/models/fax_send_request.rb +345 -0
  47. data/lib/dropbox-sign/models/o_auth_token_refresh_request.rb +26 -4
  48. data/lib/dropbox-sign/models/signature_request_response.rb +10 -7
  49. data/lib/dropbox-sign/models/signature_request_response_custom_field_base.rb +2 -1
  50. data/lib/dropbox-sign/models/signature_request_response_data_value_initials.rb +16 -4
  51. data/lib/dropbox-sign/models/signature_request_response_data_value_signature.rb +16 -4
  52. data/lib/dropbox-sign/models/sub_white_labeling_options.rb +12 -12
  53. data/lib/dropbox-sign/models/template_response.rb +27 -16
  54. data/lib/dropbox-sign/models/template_response_document.rb +1 -2
  55. data/lib/dropbox-sign/models/template_response_document_form_field_base.rb +4 -16
  56. data/lib/dropbox-sign/models/template_response_document_form_field_checkbox.rb +16 -4
  57. data/lib/dropbox-sign/models/template_response_document_form_field_date_signed.rb +16 -4
  58. data/lib/dropbox-sign/models/template_response_document_form_field_dropdown.rb +16 -4
  59. data/lib/dropbox-sign/models/template_response_document_form_field_hyperlink.rb +16 -4
  60. data/lib/dropbox-sign/models/template_response_document_form_field_initials.rb +16 -4
  61. data/lib/dropbox-sign/models/template_response_document_form_field_radio.rb +20 -4
  62. data/lib/dropbox-sign/models/template_response_document_form_field_signature.rb +16 -4
  63. data/lib/dropbox-sign/models/template_response_document_form_field_text.rb +17 -5
  64. data/lib/dropbox-sign/version.rb +1 -1
  65. data/lib/dropbox-sign.rb +6 -0
  66. data/openapi-config.yaml +1 -1
  67. data/openapi-sdk.yaml +821 -98
  68. data/run-build +9 -0
  69. data/test_fixtures/ApiAppCreateRequest.json +10 -10
  70. data/test_fixtures/ApiAppGetResponse.json +18 -3
  71. data/test_fixtures/ApiAppListResponse.json +7 -1
  72. data/test_fixtures/ApiAppUpdateRequest.json +11 -11
  73. data/test_fixtures/BulkSendJobGetResponse.json +9 -0
  74. data/test_fixtures/FaxGetResponse.json +31 -0
  75. data/test_fixtures/FaxListResponse.json +39 -0
  76. data/test_fixtures/FaxSendRequest.json +14 -0
  77. data/test_fixtures/FaxSendResponse.json +16 -0
  78. data/test_fixtures/SignatureRequestBulkCreateEmbeddedWithTemplateRequest.json +7 -1
  79. data/test_fixtures/SignatureRequestBulkSendWithTemplateRequest.json +7 -1
  80. data/test_fixtures/SignatureRequestCreateEmbeddedRequest.json +7 -1
  81. data/test_fixtures/SignatureRequestCreateEmbeddedWithTemplateRequest.json +7 -1
  82. data/test_fixtures/SignatureRequestGetResponse.json +11 -1
  83. data/test_fixtures/SignatureRequestListResponse.json +9 -1
  84. data/test_fixtures/SignatureRequestSendRequest.json +5 -1
  85. data/test_fixtures/SignatureRequestSendWithTemplateRequest.json +7 -1
  86. data/test_fixtures/TeamGetResponse.json +5 -0
  87. data/test_fixtures/TemplateCreateEmbeddedDraftRequest.json +5 -0
  88. data/test_fixtures/TemplateCreateRequest.json +5 -0
  89. data/test_fixtures/TemplateGetResponse.json +34 -479
  90. data/test_fixtures/TemplateListResponse.json +43 -6
  91. data/test_fixtures/UnclaimedDraftCreateEmbeddedRequest.json +5 -0
  92. data/test_fixtures/UnclaimedDraftCreateEmbeddedWithTemplateRequest.json +5 -0
  93. data/test_fixtures/UnclaimedDraftCreateRequest.json +5 -0
  94. metadata +29 -8
data/openapi-sdk.yaml CHANGED
@@ -1409,6 +1409,304 @@ paths:
1409
1409
  seo:
1410
1410
  title: 'Get Embedded Sign URL | iFrame | Dropbox Sign for Developers'
1411
1411
  description: 'The Dropbox Sign API allows you to build custom integrations. To find out how to retrieve an embedded iFrame object containing a signature url, click here.'
1412
+ '/fax/{fax_id}':
1413
+ get:
1414
+ tags:
1415
+ - Fax
1416
+ summary: 'Get Fax'
1417
+ description: 'Returns information about fax'
1418
+ operationId: faxGet
1419
+ parameters:
1420
+ -
1421
+ name: fax_id
1422
+ in: path
1423
+ description: 'Fax ID'
1424
+ required: true
1425
+ schema:
1426
+ type: string
1427
+ example: fa5c8a0b0f492d768749333ad6fcc214c111e967
1428
+ responses:
1429
+ 200:
1430
+ description: 'successful operation'
1431
+ headers:
1432
+ X-RateLimit-Limit:
1433
+ $ref: '#/components/headers/X-RateLimit-Limit'
1434
+ X-RateLimit-Remaining:
1435
+ $ref: '#/components/headers/X-RateLimit-Remaining'
1436
+ X-Ratelimit-Reset:
1437
+ $ref: '#/components/headers/X-Ratelimit-Reset'
1438
+ content:
1439
+ application/json:
1440
+ schema:
1441
+ $ref: '#/components/schemas/FaxGetResponse'
1442
+ examples:
1443
+ default_example:
1444
+ $ref: '#/components/examples/FaxGetResponseExample'
1445
+ 4XX:
1446
+ description: failed_operation
1447
+ content:
1448
+ application/json:
1449
+ schema:
1450
+ $ref: '#/components/schemas/ErrorResponse'
1451
+ examples:
1452
+ 400_example:
1453
+ $ref: '#/components/examples/Error400ResponseExample'
1454
+ 401_example:
1455
+ $ref: '#/components/examples/Error401ResponseExample'
1456
+ 402_example:
1457
+ $ref: '#/components/examples/Error402ResponseExample'
1458
+ 403_example:
1459
+ $ref: '#/components/examples/Error403ResponseExample'
1460
+ 404_example:
1461
+ $ref: '#/components/examples/Error404ResponseExample'
1462
+ 429_example:
1463
+ $ref: '#/components/examples/Error429ResponseExample'
1464
+ 4XX_example:
1465
+ $ref: '#/components/examples/Error4XXResponseExample'
1466
+ security:
1467
+ -
1468
+ api_key: []
1469
+ x-codeSamples:
1470
+ -
1471
+ lang: PHP
1472
+ label: PHP
1473
+ source:
1474
+ $ref: examples/FaxGet.php
1475
+ -
1476
+ lang: 'C#'
1477
+ label: 'C#'
1478
+ source:
1479
+ $ref: examples/FaxGet.cs
1480
+ -
1481
+ lang: JavaScript
1482
+ label: JavaScript
1483
+ source:
1484
+ $ref: examples/FaxGet.js
1485
+ -
1486
+ lang: TypeScript
1487
+ label: TypeScript
1488
+ source:
1489
+ $ref: examples/FaxGet.ts
1490
+ -
1491
+ lang: Java
1492
+ label: Java
1493
+ source:
1494
+ $ref: examples/FaxGet.java
1495
+ -
1496
+ lang: Ruby
1497
+ label: Ruby
1498
+ source:
1499
+ $ref: examples/FaxGet.rb
1500
+ -
1501
+ lang: Python
1502
+ label: Python
1503
+ source:
1504
+ $ref: examples/FaxGet.py
1505
+ -
1506
+ lang: cURL
1507
+ label: cURL
1508
+ source:
1509
+ $ref: examples/FaxGet.sh
1510
+ x-meta:
1511
+ seo:
1512
+ title: 'Get Fax | API Documentation | Dropbox Fax for Developers'
1513
+ description: 'The Dropbox Fax API allows you to build custom integrations. To find out how to retrieve a fax, click here.'
1514
+ delete:
1515
+ tags:
1516
+ - Fax
1517
+ summary: 'Delete Fax'
1518
+ description: 'Deletes the specified Fax from the system.'
1519
+ operationId: faxDelete
1520
+ parameters:
1521
+ -
1522
+ name: fax_id
1523
+ in: path
1524
+ description: 'Fax ID'
1525
+ required: true
1526
+ schema:
1527
+ type: string
1528
+ example: fa5c8a0b0f492d768749333ad6fcc214c111e967
1529
+ responses:
1530
+ 204:
1531
+ description: 'successful operation'
1532
+ headers:
1533
+ X-RateLimit-Limit:
1534
+ $ref: '#/components/headers/X-RateLimit-Limit'
1535
+ X-RateLimit-Remaining:
1536
+ $ref: '#/components/headers/X-RateLimit-Remaining'
1537
+ X-Ratelimit-Reset:
1538
+ $ref: '#/components/headers/X-Ratelimit-Reset'
1539
+ 4XX:
1540
+ description: failed_operation
1541
+ content:
1542
+ application/json:
1543
+ schema:
1544
+ $ref: '#/components/schemas/ErrorResponse'
1545
+ examples:
1546
+ 400_example:
1547
+ $ref: '#/components/examples/Error400ResponseExample'
1548
+ 401_example:
1549
+ $ref: '#/components/examples/Error401ResponseExample'
1550
+ 402_example:
1551
+ $ref: '#/components/examples/Error402ResponseExample'
1552
+ 403_example:
1553
+ $ref: '#/components/examples/Error403ResponseExample'
1554
+ 404_example:
1555
+ $ref: '#/components/examples/Error404ResponseExample'
1556
+ 429_example:
1557
+ $ref: '#/components/examples/Error429ResponseExample'
1558
+ 4XX_example:
1559
+ $ref: '#/components/examples/Error4XXResponseExample'
1560
+ security:
1561
+ -
1562
+ api_key: []
1563
+ x-codeSamples:
1564
+ -
1565
+ lang: PHP
1566
+ label: PHP
1567
+ source:
1568
+ $ref: examples/FaxDelete.php
1569
+ -
1570
+ lang: 'C#'
1571
+ label: 'C#'
1572
+ source:
1573
+ $ref: examples/FaxDelete.cs
1574
+ -
1575
+ lang: JavaScript
1576
+ label: JavaScript
1577
+ source:
1578
+ $ref: examples/FaxDelete.js
1579
+ -
1580
+ lang: TypeScript
1581
+ label: TypeScript
1582
+ source:
1583
+ $ref: examples/FaxDelete.ts
1584
+ -
1585
+ lang: Java
1586
+ label: Java
1587
+ source:
1588
+ $ref: examples/FaxDelete.java
1589
+ -
1590
+ lang: Ruby
1591
+ label: Ruby
1592
+ source:
1593
+ $ref: examples/FaxDelete.rb
1594
+ -
1595
+ lang: Python
1596
+ label: Python
1597
+ source:
1598
+ $ref: examples/FaxDelete.py
1599
+ -
1600
+ lang: cURL
1601
+ label: cURL
1602
+ source:
1603
+ $ref: examples/FaxDelete.sh
1604
+ x-meta:
1605
+ seo:
1606
+ title: 'Delete Fax | API Documentation | Dropbox Fax for Developers'
1607
+ description: 'The Dropbox Fax API allows you to build custom integrations. To find out how to delete a fax, click here.'
1608
+ '/fax/files/{fax_id}':
1609
+ get:
1610
+ tags:
1611
+ - Fax
1612
+ summary: 'List Fax Files'
1613
+ description: 'Returns list of fax files'
1614
+ operationId: faxFiles
1615
+ parameters:
1616
+ -
1617
+ name: fax_id
1618
+ in: path
1619
+ description: 'Fax ID'
1620
+ required: true
1621
+ schema:
1622
+ type: string
1623
+ example: fa5c8a0b0f492d768749333ad6fcc214c111e967
1624
+ responses:
1625
+ 200:
1626
+ description: 'successful operation'
1627
+ headers:
1628
+ X-RateLimit-Limit:
1629
+ $ref: '#/components/headers/X-RateLimit-Limit'
1630
+ X-RateLimit-Remaining:
1631
+ $ref: '#/components/headers/X-RateLimit-Remaining'
1632
+ X-Ratelimit-Reset:
1633
+ $ref: '#/components/headers/X-Ratelimit-Reset'
1634
+ content:
1635
+ application/pdf:
1636
+ schema:
1637
+ type: string
1638
+ format: binary
1639
+ 4XX:
1640
+ description: failed_operation
1641
+ content:
1642
+ application/json:
1643
+ schema:
1644
+ $ref: '#/components/schemas/ErrorResponse'
1645
+ examples:
1646
+ 400_example:
1647
+ $ref: '#/components/examples/Error400ResponseExample'
1648
+ 401_example:
1649
+ $ref: '#/components/examples/Error401ResponseExample'
1650
+ 402_example:
1651
+ $ref: '#/components/examples/Error402ResponseExample'
1652
+ 403_example:
1653
+ $ref: '#/components/examples/Error403ResponseExample'
1654
+ 404_example:
1655
+ $ref: '#/components/examples/Error404ResponseExample'
1656
+ 410_example:
1657
+ $ref: '#/components/examples/Error410ResponseExample'
1658
+ 429_example:
1659
+ $ref: '#/components/examples/Error429ResponseExample'
1660
+ 4XX_example:
1661
+ $ref: '#/components/examples/Error4XXResponseExample'
1662
+ security:
1663
+ -
1664
+ api_key: []
1665
+ x-codeSamples:
1666
+ -
1667
+ lang: PHP
1668
+ label: PHP
1669
+ source:
1670
+ $ref: examples/FaxFiles.php
1671
+ -
1672
+ lang: 'C#'
1673
+ label: 'C#'
1674
+ source:
1675
+ $ref: examples/FaxFiles.cs
1676
+ -
1677
+ lang: JavaScript
1678
+ label: JavaScript
1679
+ source:
1680
+ $ref: examples/FaxFiles.js
1681
+ -
1682
+ lang: TypeScript
1683
+ label: TypeScript
1684
+ source:
1685
+ $ref: examples/FaxFiles.ts
1686
+ -
1687
+ lang: Java
1688
+ label: Java
1689
+ source:
1690
+ $ref: examples/FaxFiles.java
1691
+ -
1692
+ lang: Ruby
1693
+ label: Ruby
1694
+ source:
1695
+ $ref: examples/FaxFiles.rb
1696
+ -
1697
+ lang: Python
1698
+ label: Python
1699
+ source:
1700
+ $ref: examples/FaxFiles.py
1701
+ -
1702
+ lang: cURL
1703
+ label: cURL
1704
+ source:
1705
+ $ref: examples/FaxFiles.sh
1706
+ x-meta:
1707
+ seo:
1708
+ title: 'Fax Files | API Documentation | Dropbox Fax for Developers'
1709
+ description: 'The Dropbox Fax API allows you to build custom integrations. To find out how to list fax files, click here.'
1412
1710
  /fax_line/add_user:
1413
1711
  put:
1414
1712
  tags:
@@ -2023,7 +2321,216 @@ paths:
2023
2321
  in: query
2024
2322
  description: 'Show team lines'
2025
2323
  schema:
2026
- type: boolean
2324
+ type: boolean
2325
+ responses:
2326
+ 200:
2327
+ description: 'successful operation'
2328
+ headers:
2329
+ X-RateLimit-Limit:
2330
+ $ref: '#/components/headers/X-RateLimit-Limit'
2331
+ X-RateLimit-Remaining:
2332
+ $ref: '#/components/headers/X-RateLimit-Remaining'
2333
+ X-Ratelimit-Reset:
2334
+ $ref: '#/components/headers/X-Ratelimit-Reset'
2335
+ content:
2336
+ application/json:
2337
+ schema:
2338
+ $ref: '#/components/schemas/FaxLineListResponse'
2339
+ examples:
2340
+ default_example:
2341
+ $ref: '#/components/examples/FaxLineListResponseExample'
2342
+ 4XX:
2343
+ description: failed_operation
2344
+ content:
2345
+ application/json:
2346
+ schema:
2347
+ $ref: '#/components/schemas/ErrorResponse'
2348
+ examples:
2349
+ 400_example:
2350
+ $ref: '#/components/examples/Error400ResponseExample'
2351
+ 401_example:
2352
+ $ref: '#/components/examples/Error401ResponseExample'
2353
+ 402_example:
2354
+ $ref: '#/components/examples/Error402ResponseExample'
2355
+ 403_example:
2356
+ $ref: '#/components/examples/Error403ResponseExample'
2357
+ 4XX_example:
2358
+ $ref: '#/components/examples/Error4XXResponseExample'
2359
+ security:
2360
+ -
2361
+ api_key: []
2362
+ x-codeSamples:
2363
+ -
2364
+ lang: PHP
2365
+ label: PHP
2366
+ source:
2367
+ $ref: examples/FaxLineList.php
2368
+ -
2369
+ lang: 'C#'
2370
+ label: 'C#'
2371
+ source:
2372
+ $ref: examples/FaxLineList.cs
2373
+ -
2374
+ lang: JavaScript
2375
+ label: JavaScript
2376
+ source:
2377
+ $ref: examples/FaxLineList.js
2378
+ -
2379
+ lang: TypeScript
2380
+ label: TypeScript
2381
+ source:
2382
+ $ref: examples/FaxLineList.ts
2383
+ -
2384
+ lang: Java
2385
+ label: Java
2386
+ source:
2387
+ $ref: examples/FaxLineList.java
2388
+ -
2389
+ lang: Ruby
2390
+ label: Ruby
2391
+ source:
2392
+ $ref: examples/FaxLineList.rb
2393
+ -
2394
+ lang: Python
2395
+ label: Python
2396
+ source:
2397
+ $ref: examples/FaxLineList.py
2398
+ -
2399
+ lang: cURL
2400
+ label: cURL
2401
+ source:
2402
+ $ref: examples/FaxLineList.sh
2403
+ x-meta:
2404
+ seo:
2405
+ title: 'List Fax Lines | API Documentation | Dropbox Fax for Developers'
2406
+ description: 'The Dropbox Fax API allows you to build custom integrations. To find out how to list your fax lines, click here.'
2407
+ /fax_line/remove_user:
2408
+ put:
2409
+ tags:
2410
+ - 'Fax Line'
2411
+ summary: 'Remove Fax Line Access'
2412
+ description: 'Removes a user''s access to the specified Fax Line.'
2413
+ operationId: faxLineRemoveUser
2414
+ requestBody:
2415
+ required: true
2416
+ content:
2417
+ application/json:
2418
+ schema:
2419
+ $ref: '#/components/schemas/FaxLineRemoveUserRequest'
2420
+ examples:
2421
+ default_example:
2422
+ $ref: '#/components/examples/FaxLineRemoveUserRequestExample'
2423
+ responses:
2424
+ 200:
2425
+ description: 'successful operation'
2426
+ headers:
2427
+ X-RateLimit-Limit:
2428
+ $ref: '#/components/headers/X-RateLimit-Limit'
2429
+ X-RateLimit-Remaining:
2430
+ $ref: '#/components/headers/X-RateLimit-Remaining'
2431
+ X-Ratelimit-Reset:
2432
+ $ref: '#/components/headers/X-Ratelimit-Reset'
2433
+ content:
2434
+ application/json:
2435
+ schema:
2436
+ $ref: '#/components/schemas/FaxLineResponse'
2437
+ examples:
2438
+ default_example:
2439
+ $ref: '#/components/examples/FaxLineResponseExample'
2440
+ 4XX:
2441
+ description: failed_operation
2442
+ content:
2443
+ application/json:
2444
+ schema:
2445
+ $ref: '#/components/schemas/ErrorResponse'
2446
+ examples:
2447
+ 400_example:
2448
+ $ref: '#/components/examples/Error400ResponseExample'
2449
+ 401_example:
2450
+ $ref: '#/components/examples/Error401ResponseExample'
2451
+ 402_example:
2452
+ $ref: '#/components/examples/Error402ResponseExample'
2453
+ 403_example:
2454
+ $ref: '#/components/examples/Error403ResponseExample'
2455
+ 404_example:
2456
+ $ref: '#/components/examples/Error404ResponseExample'
2457
+ 4XX_example:
2458
+ $ref: '#/components/examples/Error4XXResponseExample'
2459
+ security:
2460
+ -
2461
+ api_key: []
2462
+ x-codeSamples:
2463
+ -
2464
+ lang: PHP
2465
+ label: PHP
2466
+ source:
2467
+ $ref: examples/FaxLineRemoveUser.php
2468
+ -
2469
+ lang: 'C#'
2470
+ label: 'C#'
2471
+ source:
2472
+ $ref: examples/FaxLineRemoveUser.cs
2473
+ -
2474
+ lang: JavaScript
2475
+ label: JavaScript
2476
+ source:
2477
+ $ref: examples/FaxLineRemoveUser.js
2478
+ -
2479
+ lang: TypeScript
2480
+ label: TypeScript
2481
+ source:
2482
+ $ref: examples/FaxLineRemoveUser.ts
2483
+ -
2484
+ lang: Java
2485
+ label: Java
2486
+ source:
2487
+ $ref: examples/FaxLineRemoveUser.java
2488
+ -
2489
+ lang: Ruby
2490
+ label: Ruby
2491
+ source:
2492
+ $ref: examples/FaxLineRemoveUser.rb
2493
+ -
2494
+ lang: Python
2495
+ label: Python
2496
+ source:
2497
+ $ref: examples/FaxLineRemoveUser.py
2498
+ -
2499
+ lang: cURL
2500
+ label: cURL
2501
+ source:
2502
+ $ref: examples/FaxLineRemoveUser.sh
2503
+ x-meta:
2504
+ seo:
2505
+ title: 'Fax Line Remove User | API Documentation | Dropbox Fax for Developers'
2506
+ description: 'The Dropbox Fax API allows you to build custom integrations. To find out how to remove a user from an existing fax line, click here.'
2507
+ /fax/list:
2508
+ get:
2509
+ tags:
2510
+ - Fax
2511
+ summary: 'Lists Faxes'
2512
+ description: 'Returns properties of multiple faxes'
2513
+ operationId: faxList
2514
+ parameters:
2515
+ -
2516
+ name: page
2517
+ in: query
2518
+ description: Page
2519
+ schema:
2520
+ type: integer
2521
+ default: 1
2522
+ minimum: 1
2523
+ example: 1
2524
+ -
2525
+ name: page_size
2526
+ in: query
2527
+ description: 'Page size'
2528
+ schema:
2529
+ type: integer
2530
+ default: 20
2531
+ maximum: 100
2532
+ minimum: 1
2533
+ example: 20
2027
2534
  responses:
2028
2535
  200:
2029
2536
  description: 'successful operation'
@@ -2037,10 +2544,10 @@ paths:
2037
2544
  content:
2038
2545
  application/json:
2039
2546
  schema:
2040
- $ref: '#/components/schemas/FaxLineListResponse'
2547
+ $ref: '#/components/schemas/FaxListResponse'
2041
2548
  examples:
2042
2549
  default_example:
2043
- $ref: '#/components/examples/FaxLineListResponseExample'
2550
+ $ref: '#/components/examples/FaxListResponseExample'
2044
2551
  4XX:
2045
2552
  description: failed_operation
2046
2553
  content:
@@ -2066,62 +2573,65 @@ paths:
2066
2573
  lang: PHP
2067
2574
  label: PHP
2068
2575
  source:
2069
- $ref: examples/FaxLineList.php
2576
+ $ref: examples/FaxList.php
2070
2577
  -
2071
2578
  lang: 'C#'
2072
2579
  label: 'C#'
2073
2580
  source:
2074
- $ref: examples/FaxLineList.cs
2581
+ $ref: examples/FaxList.cs
2075
2582
  -
2076
2583
  lang: JavaScript
2077
2584
  label: JavaScript
2078
2585
  source:
2079
- $ref: examples/FaxLineList.js
2586
+ $ref: examples/FaxList.js
2080
2587
  -
2081
2588
  lang: TypeScript
2082
2589
  label: TypeScript
2083
2590
  source:
2084
- $ref: examples/FaxLineList.ts
2591
+ $ref: examples/FaxList.ts
2085
2592
  -
2086
2593
  lang: Java
2087
2594
  label: Java
2088
2595
  source:
2089
- $ref: examples/FaxLineList.java
2596
+ $ref: examples/FaxList.java
2090
2597
  -
2091
2598
  lang: Ruby
2092
2599
  label: Ruby
2093
2600
  source:
2094
- $ref: examples/FaxLineList.rb
2601
+ $ref: examples/FaxList.rb
2095
2602
  -
2096
2603
  lang: Python
2097
2604
  label: Python
2098
2605
  source:
2099
- $ref: examples/FaxLineList.py
2606
+ $ref: examples/FaxList.py
2100
2607
  -
2101
2608
  lang: cURL
2102
2609
  label: cURL
2103
2610
  source:
2104
- $ref: examples/FaxLineList.sh
2611
+ $ref: examples/FaxList.sh
2105
2612
  x-meta:
2106
2613
  seo:
2107
- title: 'List Fax Lines | API Documentation | Dropbox Fax for Developers'
2108
- description: 'The Dropbox Fax API allows you to build custom integrations. To find out how to list your fax lines, click here.'
2109
- /fax_line/remove_user:
2110
- put:
2614
+ title: 'List Faxes | API Documentation | Dropbox Fax for Developers'
2615
+ description: 'The Dropbox Fax API allows you to build custom integrations. To find out how to list your faxes, click here.'
2616
+ /fax/send:
2617
+ post:
2111
2618
  tags:
2112
- - 'Fax Line'
2113
- summary: 'Remove Fax Line Access'
2114
- description: 'Removes a user''s access to the specified Fax Line.'
2115
- operationId: faxLineRemoveUser
2619
+ - Fax
2620
+ summary: 'Send Fax'
2621
+ description: 'Action to prepare and send a fax'
2622
+ operationId: faxSend
2116
2623
  requestBody:
2117
2624
  required: true
2118
2625
  content:
2119
2626
  application/json:
2120
2627
  schema:
2121
- $ref: '#/components/schemas/FaxLineRemoveUserRequest'
2628
+ $ref: '#/components/schemas/FaxSendRequest'
2122
2629
  examples:
2123
2630
  default_example:
2124
- $ref: '#/components/examples/FaxLineRemoveUserRequestExample'
2631
+ $ref: '#/components/examples/FaxSendRequestExample'
2632
+ multipart/form-data:
2633
+ schema:
2634
+ $ref: '#/components/schemas/FaxSendRequest'
2125
2635
  responses:
2126
2636
  200:
2127
2637
  description: 'successful operation'
@@ -2135,10 +2645,10 @@ paths:
2135
2645
  content:
2136
2646
  application/json:
2137
2647
  schema:
2138
- $ref: '#/components/schemas/FaxLineResponse'
2648
+ $ref: '#/components/schemas/FaxGetResponse'
2139
2649
  examples:
2140
2650
  default_example:
2141
- $ref: '#/components/examples/FaxLineResponseExample'
2651
+ $ref: '#/components/examples/FaxGetResponseExample'
2142
2652
  4XX:
2143
2653
  description: failed_operation
2144
2654
  content:
@@ -2156,6 +2666,8 @@ paths:
2156
2666
  $ref: '#/components/examples/Error403ResponseExample'
2157
2667
  404_example:
2158
2668
  $ref: '#/components/examples/Error404ResponseExample'
2669
+ 429_example:
2670
+ $ref: '#/components/examples/Error429ResponseExample'
2159
2671
  4XX_example:
2160
2672
  $ref: '#/components/examples/Error4XXResponseExample'
2161
2673
  security:
@@ -2166,46 +2678,46 @@ paths:
2166
2678
  lang: PHP
2167
2679
  label: PHP
2168
2680
  source:
2169
- $ref: examples/FaxLineRemoveUser.php
2681
+ $ref: examples/FaxSend.php
2170
2682
  -
2171
2683
  lang: 'C#'
2172
2684
  label: 'C#'
2173
2685
  source:
2174
- $ref: examples/FaxLineRemoveUser.cs
2686
+ $ref: examples/FaxSend.cs
2175
2687
  -
2176
2688
  lang: JavaScript
2177
2689
  label: JavaScript
2178
2690
  source:
2179
- $ref: examples/FaxLineRemoveUser.js
2691
+ $ref: examples/FaxSend.js
2180
2692
  -
2181
2693
  lang: TypeScript
2182
2694
  label: TypeScript
2183
2695
  source:
2184
- $ref: examples/FaxLineRemoveUser.ts
2696
+ $ref: examples/FaxSend.ts
2185
2697
  -
2186
2698
  lang: Java
2187
2699
  label: Java
2188
2700
  source:
2189
- $ref: examples/FaxLineRemoveUser.java
2701
+ $ref: examples/FaxSend.java
2190
2702
  -
2191
2703
  lang: Ruby
2192
2704
  label: Ruby
2193
2705
  source:
2194
- $ref: examples/FaxLineRemoveUser.rb
2706
+ $ref: examples/FaxSend.rb
2195
2707
  -
2196
2708
  lang: Python
2197
2709
  label: Python
2198
2710
  source:
2199
- $ref: examples/FaxLineRemoveUser.py
2711
+ $ref: examples/FaxSend.py
2200
2712
  -
2201
2713
  lang: cURL
2202
2714
  label: cURL
2203
2715
  source:
2204
- $ref: examples/FaxLineRemoveUser.sh
2716
+ $ref: examples/FaxSend.sh
2205
2717
  x-meta:
2206
2718
  seo:
2207
- title: 'Fax Line Remove User | API Documentation | Dropbox Fax for Developers'
2208
- description: 'The Dropbox Fax API allows you to build custom integrations. To find out how to remove a user from an existing fax line, click here.'
2719
+ title: 'Send Fax| API Documentation | Dropbox Fax for Developers'
2720
+ description: 'The Dropbox Fax API allows you to build custom integrations. To find out how to send a fax, click here.'
2209
2721
  /oauth/token:
2210
2722
  post:
2211
2723
  tags:
@@ -2239,6 +2751,23 @@ paths:
2239
2751
  examples:
2240
2752
  default_example:
2241
2753
  $ref: '#/components/examples/OAuthTokenGenerateResponseExample'
2754
+ 4XX:
2755
+ description: failed_operation
2756
+ content:
2757
+ application/json:
2758
+ schema:
2759
+ $ref: '#/components/schemas/ErrorResponse'
2760
+ examples:
2761
+ 400_example:
2762
+ $ref: '#/components/examples/Error400ResponseExample'
2763
+ 401_example:
2764
+ $ref: '#/components/examples/Error401ResponseExample'
2765
+ 402_example:
2766
+ $ref: '#/components/examples/Error402ResponseExample'
2767
+ 403_example:
2768
+ $ref: '#/components/examples/Error403ResponseExample'
2769
+ 4XX_example:
2770
+ $ref: '#/components/examples/Error4XXResponseExample'
2242
2771
  security: []
2243
2772
  servers:
2244
2773
  -
@@ -2322,6 +2851,23 @@ paths:
2322
2851
  examples:
2323
2852
  default_example:
2324
2853
  $ref: '#/components/examples/OAuthTokenRefreshResponseExample'
2854
+ 4XX:
2855
+ description: failed_operation
2856
+ content:
2857
+ application/json:
2858
+ schema:
2859
+ $ref: '#/components/schemas/ErrorResponse'
2860
+ examples:
2861
+ 400_example:
2862
+ $ref: '#/components/examples/Error400ResponseExample'
2863
+ 401_example:
2864
+ $ref: '#/components/examples/Error401ResponseExample'
2865
+ 402_example:
2866
+ $ref: '#/components/examples/Error402ResponseExample'
2867
+ 403_example:
2868
+ $ref: '#/components/examples/Error403ResponseExample'
2869
+ 4XX_example:
2870
+ $ref: '#/components/examples/Error4XXResponseExample'
2325
2871
  security: []
2326
2872
  servers:
2327
2873
  -
@@ -2703,7 +3249,7 @@ paths:
2703
3249
 
2704
3250
  The request will be canceled and signers will no longer be able to sign. If they try to access the signature request they will receive a HTTP 410 status code indicating that the resource has been deleted. Cancelation is asynchronous and a successful call to this endpoint will return an empty 200 OK response if the signature request is eligible to be canceled and has been successfully queued.
2705
3251
 
2706
- This 200 OK response does not indicate a successful cancelation of the signature request itself. The cancelation is confirmed via the `signature_request_canceled` event. It is recommended that a [callback handler](/api/reference/tag/Callbacks-and-Events) be implemented to listen for the `signature_request_canceled` event. This callback will be sent only when the cancelation has completed successfully. If a callback handler has been configured and the event has not been received within 60 minutes of making the call, check the status of the request in the [API Dashboard](https://app.hellosign.com/apidashboard) and retry the cancelation if necessary.
3252
+ This 200 OK response does not indicate a successful cancelation of the signature request itself. The cancelation is confirmed via the `signature_request_canceled` event. It is recommended that a [callback handler](/api/reference/tag/Callbacks-and-Events) be implemented to listen for the `signature_request_canceled` event. This callback will be sent only when the cancelation has completed successfully. If a callback handler has been configured and the event has not been received within 60 minutes of making the call, check the status of the request in the [API Dashboard](https://app.hellosign.com/apidashboard) and retry the cancelation if necessary.
2707
3253
 
2708
3254
  To be eligible for cancelation, a signature request must have been sent successfully, must not yet have been signed by all signers, and you must either be the sender or own the API app under which it was sent. A partially signed signature request can be canceled.
2709
3255
 
@@ -4617,7 +5163,7 @@ paths:
4617
5163
  403_example:
4618
5164
  $ref: '#/components/examples/Error403ResponseExample'
4619
5165
  404_example:
4620
- $ref: '#/components/examples/TeamDoesNotExistResponseExample'
5166
+ $ref: '#/components/examples/Error404ResponseExample'
4621
5167
  4XX_example:
4622
5168
  $ref: '#/components/examples/Error4XXResponseExample'
4623
5169
  security:
@@ -5440,7 +5986,7 @@ paths:
5440
5986
  post:
5441
5987
  tags:
5442
5988
  - Template
5443
- summary: 'Create Template'
5989
+ summary: 'Create Template'
5444
5990
  description: 'Creates a template that can then be used.'
5445
5991
  operationId: templateCreate
5446
5992
  requestBody:
@@ -7345,6 +7891,50 @@ components:
7345
7891
  type: string
7346
7892
  format: email
7347
7893
  type: object
7894
+ FaxSendRequest:
7895
+ required:
7896
+ - recipient
7897
+ properties:
7898
+ recipient:
7899
+ description: 'Fax Send To Recipient'
7900
+ type: string
7901
+ example: recipient@example.com
7902
+ sender:
7903
+ description: 'Fax Send From Sender (used only with fax number)'
7904
+ type: string
7905
+ example: sender@example.com
7906
+ files:
7907
+ description: 'Fax File to Send'
7908
+ type: array
7909
+ items:
7910
+ type: string
7911
+ format: binary
7912
+ file_urls:
7913
+ description: 'Fax File URL to Send'
7914
+ type: array
7915
+ items:
7916
+ type: string
7917
+ test_mode:
7918
+ description: 'API Test Mode Setting'
7919
+ type: boolean
7920
+ default: false
7921
+ cover_page_to:
7922
+ description: 'Fax Cover Page for Recipient'
7923
+ type: string
7924
+ example: 'Recipient Name'
7925
+ cover_page_from:
7926
+ description: 'Fax Cover Page for Sender'
7927
+ type: string
7928
+ example: 'Sender Name'
7929
+ cover_page_message:
7930
+ description: 'Fax Cover Page Message'
7931
+ type: string
7932
+ example: 'Please find the attached documents.'
7933
+ title:
7934
+ description: 'Fax Title'
7935
+ type: string
7936
+ example: 'Fax Title'
7937
+ type: object
7348
7938
  OAuthTokenGenerateRequest:
7349
7939
  required:
7350
7940
  - client_id
@@ -7382,6 +7972,12 @@ components:
7382
7972
  refresh_token:
7383
7973
  description: 'The token provided when you got the expired access token.'
7384
7974
  type: string
7975
+ client_id:
7976
+ description: 'The client ID for your API app. Mandatory from August 1st, 2025. Until then, required if the "Client Credentials Required" setting is enabled for token refresh; optional if disabled.'
7977
+ type: string
7978
+ client_secret:
7979
+ description: 'The client secret for your API app. Mandatory from August 1st, 2025. Until then, required if the "Client Credentials Required" setting is enabled for token refresh; optional if disabled.'
7980
+ type: string
7385
7981
  type: object
7386
7982
  ReportCreateRequest:
7387
7983
  required:
@@ -9091,7 +9687,7 @@ components:
9091
9687
  properties:
9092
9688
  header_background_color:
9093
9689
  type: string
9094
- default: '#1A1A1A'
9690
+ default: '#1a1a1a'
9095
9691
  legal_version:
9096
9692
  type: string
9097
9693
  default: terms1
@@ -9100,40 +9696,40 @@ components:
9100
9696
  - terms2
9101
9697
  link_color:
9102
9698
  type: string
9103
- default: '#00B3E6'
9699
+ default: '#0061FE'
9104
9700
  page_background_color:
9105
9701
  type: string
9106
- default: '#F7F8F9'
9702
+ default: '#f7f8f9'
9107
9703
  primary_button_color:
9108
9704
  type: string
9109
- default: '#00B3E6'
9705
+ default: '#0061FE'
9110
9706
  primary_button_color_hover:
9111
9707
  type: string
9112
- default: '#00B3E6'
9708
+ default: '#0061FE'
9113
9709
  primary_button_text_color:
9114
9710
  type: string
9115
- default: '#FFFFFF'
9711
+ default: '#ffffff'
9116
9712
  primary_button_text_color_hover:
9117
9713
  type: string
9118
- default: '#FFFFFF'
9714
+ default: '#ffffff'
9119
9715
  secondary_button_color:
9120
9716
  type: string
9121
- default: '#FFFFFF'
9717
+ default: '#ffffff'
9122
9718
  secondary_button_color_hover:
9123
9719
  type: string
9124
- default: '#FFFFFF'
9720
+ default: '#ffffff'
9125
9721
  secondary_button_text_color:
9126
9722
  type: string
9127
- default: '#00B3E6'
9723
+ default: '#0061FE'
9128
9724
  secondary_button_text_color_hover:
9129
9725
  type: string
9130
- default: '#00B3E6'
9726
+ default: '#0061FE'
9131
9727
  text_color1:
9132
9728
  type: string
9133
9729
  default: '#808080'
9134
9730
  text_color2:
9135
9731
  type: string
9136
- default: '#FFFFFF'
9732
+ default: '#ffffff'
9137
9733
  reset_to_default:
9138
9734
  description: 'Resets white labeling options to defaults. Only useful when updating an API App.'
9139
9735
  type: boolean
@@ -10211,6 +10807,19 @@ components:
10211
10807
  error:
10212
10808
  $ref: '#/components/schemas/ErrorResponseError'
10213
10809
  type: object
10810
+ FaxGetResponse:
10811
+ required:
10812
+ - fax
10813
+ properties:
10814
+ fax:
10815
+ $ref: '#/components/schemas/FaxResponse'
10816
+ warnings:
10817
+ description: 'A list of warnings.'
10818
+ type: array
10819
+ items:
10820
+ $ref: '#/components/schemas/WarningResponse'
10821
+ type: object
10822
+ x-internal-class: true
10214
10823
  FaxLineResponse:
10215
10824
  required:
10216
10825
  - fax_line
@@ -10246,6 +10855,19 @@ components:
10246
10855
  $ref: '#/components/schemas/WarningResponse'
10247
10856
  type: object
10248
10857
  x-internal-class: true
10858
+ FaxListResponse:
10859
+ required:
10860
+ - faxes
10861
+ - list_info
10862
+ properties:
10863
+ faxes:
10864
+ type: array
10865
+ items:
10866
+ $ref: '#/components/schemas/FaxResponse'
10867
+ list_info:
10868
+ $ref: '#/components/schemas/ListInfoResponse'
10869
+ type: object
10870
+ x-internal-class: true
10249
10871
  FileResponse:
10250
10872
  required:
10251
10873
  - file_url
@@ -10388,7 +11010,7 @@ components:
10388
11010
  type: integer
10389
11011
  nullable: true
10390
11012
  sms_verifications_left:
10391
- description: 'SMS verifications remaining.'
11013
+ description: 'SMS verifications remaining.'
10392
11014
  type: integer
10393
11015
  nullable: true
10394
11016
  num_fax_pages_left:
@@ -10456,6 +11078,7 @@ components:
10456
11078
  secret:
10457
11079
  description: 'The app''s OAuth secret, or null if the app does not belong to user.'
10458
11080
  type: string
11081
+ nullable: true
10459
11082
  scopes:
10460
11083
  description: 'Array of OAuth scopes used by the app.'
10461
11084
  type: array
@@ -10550,6 +11173,10 @@ components:
10550
11173
  bulk_send_job_id:
10551
11174
  description: 'The id of the BulkSendJob.'
10552
11175
  type: string
11176
+ metadata:
11177
+ description: 'The metadata attached to the signature request.'
11178
+ type: object
11179
+ additionalProperties: {}
10553
11180
  x-internal-class: true
10554
11181
  EmbeddedEditUrlResponseEmbedded:
10555
11182
  description: 'An embedded template object.'
@@ -10589,6 +11216,58 @@ components:
10589
11216
  description: 'Name of the error.'
10590
11217
  type: string
10591
11218
  type: object
11219
+ FaxResponse:
11220
+ required:
11221
+ - fax_id
11222
+ - title
11223
+ - original_title
11224
+ - metadata
11225
+ - created_at
11226
+ - sender
11227
+ - files_url
11228
+ - transmissions
11229
+ properties:
11230
+ fax_id:
11231
+ description: 'Fax ID'
11232
+ type: string
11233
+ title:
11234
+ description: 'Fax Title'
11235
+ type: string
11236
+ original_title:
11237
+ description: 'Fax Original Title'
11238
+ type: string
11239
+ subject:
11240
+ description: 'Fax Subject'
11241
+ type: string
11242
+ nullable: true
11243
+ message:
11244
+ description: 'Fax Message'
11245
+ type: string
11246
+ nullable: true
11247
+ metadata:
11248
+ description: 'Fax Metadata'
11249
+ type: object
11250
+ additionalProperties: {}
11251
+ created_at:
11252
+ description: 'Fax Created At Timestamp'
11253
+ type: integer
11254
+ sender:
11255
+ description: 'Fax Sender Email'
11256
+ type: string
11257
+ files_url:
11258
+ description: 'Fax Files URL'
11259
+ type: string
11260
+ final_copy_uri:
11261
+ description: 'The path where the completed document can be downloaded'
11262
+ type: string
11263
+ nullable: true
11264
+ transmissions:
11265
+ description: 'Fax Transmissions List'
11266
+ type: array
11267
+ items:
11268
+ $ref: '#/components/schemas/FaxResponseTransmission'
11269
+ type: object
11270
+ x-internal-class: true
10592
11271
  FaxLineResponseFaxLine:
10593
11272
  properties:
10594
11273
  number:
@@ -10606,6 +11285,31 @@ components:
10606
11285
  $ref: '#/components/schemas/AccountResponse'
10607
11286
  type: object
10608
11287
  x-internal-class: true
11288
+ FaxResponseTransmission:
11289
+ required:
11290
+ - recipient
11291
+ - status_code
11292
+ properties:
11293
+ recipient:
11294
+ description: 'Fax Transmission Recipient'
11295
+ type: string
11296
+ status_code:
11297
+ description: 'Fax Transmission Status Code'
11298
+ type: string
11299
+ enum:
11300
+ - success
11301
+ - transmitting
11302
+ - error_could_not_fax
11303
+ - error_unknown
11304
+ - error_busy
11305
+ - error_no_answer
11306
+ - error_disconnected
11307
+ - error_bad_destination
11308
+ sent_at:
11309
+ description: 'Fax Transmission Sent Timestamp'
11310
+ type: integer
11311
+ type: object
11312
+ x-internal-class: true
10609
11313
  ListInfoResponse:
10610
11314
  description: 'Contains pagination information about the data returned.'
10611
11315
  properties:
@@ -10652,13 +11356,13 @@ components:
10652
11356
  description: 'Whether this is a test signature request. Test requests have no legal value. Defaults to `false`.'
10653
11357
  type: boolean
10654
11358
  default: false
10655
- nullable: true
10656
11359
  signature_request_id:
10657
11360
  description: 'The id of the SignatureRequest.'
10658
11361
  type: string
10659
11362
  requester_email_address:
10660
11363
  description: 'The email address of the initiator of the SignatureRequest.'
10661
11364
  type: string
11365
+ nullable: true
10662
11366
  title:
10663
11367
  description: 'The title the specified Account uses for the SignatureRequest.'
10664
11368
  type: string
@@ -10676,12 +11380,14 @@ components:
10676
11380
  metadata:
10677
11381
  description: 'The metadata attached to the signature request.'
10678
11382
  type: object
11383
+ additionalProperties: {}
10679
11384
  created_at:
10680
11385
  description: 'Time the signature request was created.'
10681
11386
  type: integer
10682
11387
  expires_at:
10683
11388
  description: 'The time when the signature request will expire unsigned signatures. See [Signature Request Expiration Date](https://developers.hellosign.com/docs/signature-request/expiration/) for details.'
10684
11389
  type: integer
11390
+ nullable: true
10685
11391
  is_complete:
10686
11392
  description: 'Whether or not the SignatureRequest has been fully executed by all signers.'
10687
11393
  type: boolean
@@ -10809,6 +11515,7 @@ components:
10809
11515
  editor:
10810
11516
  description: 'The name of the Role that is able to edit this field.'
10811
11517
  type: string
11518
+ nullable: true
10812
11519
  type: object
10813
11520
  discriminator:
10814
11521
  propertyName: type
@@ -10819,13 +11526,12 @@ components:
10819
11526
  x-base-class: true
10820
11527
  SignatureRequestResponseCustomFieldCheckbox:
10821
11528
  description: 'This class extends `SignatureRequestResponseCustomFieldBase`.'
11529
+ required:
11530
+ - type
10822
11531
  allOf:
10823
11532
  -
10824
11533
  $ref: '#/components/schemas/SignatureRequestResponseCustomFieldBase'
10825
11534
  -
10826
- required:
10827
- - name
10828
- - type
10829
11535
  properties:
10830
11536
  type:
10831
11537
  description: 'The type of this Custom Field. Only ''text'' and ''checkbox'' are currently supported.'
@@ -10837,13 +11543,12 @@ components:
10837
11543
  type: object
10838
11544
  SignatureRequestResponseCustomFieldText:
10839
11545
  description: 'This class extends `SignatureRequestResponseCustomFieldBase`.'
11546
+ required:
11547
+ - type
10840
11548
  allOf:
10841
11549
  -
10842
11550
  $ref: '#/components/schemas/SignatureRequestResponseCustomFieldBase'
10843
11551
  -
10844
- required:
10845
- - name
10846
- - type
10847
11552
  properties:
10848
11553
  type:
10849
11554
  description: 'The type of this Custom Field. Only ''text'' and ''checkbox'' are currently supported.'
@@ -10971,6 +11676,10 @@ components:
10971
11676
  value:
10972
11677
  description: 'The value of the form field.'
10973
11678
  type: string
11679
+ is_signed:
11680
+ description: 'This field contains the boolean true if the field is signed.'
11681
+ type: boolean
11682
+ nullable: true
10974
11683
  type: object
10975
11684
  SignatureRequestResponseDataValueRadio:
10976
11685
  allOf:
@@ -10999,6 +11708,10 @@ components:
10999
11708
  value:
11000
11709
  description: 'The value of the form field.'
11001
11710
  type: string
11711
+ is_signed:
11712
+ description: 'This field contains the boolean true if the field is signed.'
11713
+ type: boolean
11714
+ nullable: true
11002
11715
  type: object
11003
11716
  SignatureRequestResponseDataValueText:
11004
11717
  allOf:
@@ -11218,27 +11931,25 @@ components:
11218
11931
  description: 'Time the template was last updated.'
11219
11932
  type: integer
11220
11933
  is_embedded:
11221
- description: '`true` if this template was created using an embedded flow, `false` if it was created on our website.'
11934
+ description: '`true` if this template was created using an embedded flow, `false` if it was created on our website. Will be `null` when you are not the creator of the Template.'
11222
11935
  type: boolean
11223
11936
  nullable: true
11224
11937
  is_creator:
11225
11938
  description: '`true` if you are the owner of this template, `false` if it''s been shared with you by a team member.'
11226
11939
  type: boolean
11227
- nullable: true
11228
11940
  can_edit:
11229
11941
  description: 'Indicates whether edit rights have been granted to you by the owner (always `true` if that''s you).'
11230
11942
  type: boolean
11231
- nullable: true
11232
11943
  is_locked:
11233
11944
  description: |-
11234
11945
  Indicates whether the template is locked.
11235
11946
  If `true`, then the template was created outside your quota and can only be used in `test_mode`.
11236
11947
  If `false`, then the template is within your quota and can be used to create signature requests.
11237
11948
  type: boolean
11238
- nullable: true
11239
11949
  metadata:
11240
11950
  description: 'The metadata attached to the template.'
11241
11951
  type: object
11952
+ additionalProperties: {}
11242
11953
  signer_roles:
11243
11954
  description: 'An array of the designated signer roles that must be specified when sending a SignatureRequest using this Template.'
11244
11955
  type: array
@@ -11273,7 +11984,11 @@ components:
11273
11984
  type: array
11274
11985
  items:
11275
11986
  $ref: '#/components/schemas/TemplateResponseAccount'
11276
- nullable: true
11987
+ attachments:
11988
+ description: 'Signer attachments.'
11989
+ type: array
11990
+ items:
11991
+ $ref: '#/components/schemas/SignatureRequestResponseAttachment'
11277
11992
  type: object
11278
11993
  x-internal-class: true
11279
11994
  TemplateResponseAccount:
@@ -11377,7 +12092,6 @@ components:
11377
12092
  type: array
11378
12093
  items:
11379
12094
  $ref: '#/components/schemas/TemplateResponseDocumentStaticFieldBase'
11380
- nullable: true
11381
12095
  type: object
11382
12096
  x-internal-class: true
11383
12097
  TemplateResponseDocumentCustomFieldBase:
@@ -11529,10 +12243,6 @@ components:
11529
12243
  required:
11530
12244
  description: 'Boolean showing whether or not this field is required.'
11531
12245
  type: boolean
11532
- group:
11533
- description: 'The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.'
11534
- type: string
11535
- nullable: true
11536
12246
  type: object
11537
12247
  discriminator:
11538
12248
  propertyName: type
@@ -11549,12 +12259,12 @@ components:
11549
12259
  x-base-class: true
11550
12260
  TemplateResponseDocumentFormFieldCheckbox:
11551
12261
  description: 'This class extends `TemplateResponseDocumentFormFieldBase`'
12262
+ required:
12263
+ - type
11552
12264
  allOf:
11553
12265
  -
11554
12266
  $ref: '#/components/schemas/TemplateResponseDocumentFormFieldBase'
11555
12267
  -
11556
- required:
11557
- - type
11558
12268
  properties:
11559
12269
  type:
11560
12270
  description: |-
@@ -11570,6 +12280,10 @@ components:
11570
12280
  * Initials Field uses `TemplateResponseDocumentFormFieldInitials`
11571
12281
  type: string
11572
12282
  default: checkbox
12283
+ group:
12284
+ description: 'The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.'
12285
+ type: string
12286
+ nullable: true
11573
12287
  type: object
11574
12288
  TemplateResponseDocumentFormFieldDateSigned:
11575
12289
  description: 'This class extends `TemplateResponseDocumentFormFieldBase`'
@@ -11579,8 +12293,6 @@ components:
11579
12293
  -
11580
12294
  $ref: '#/components/schemas/TemplateResponseDocumentFormFieldBase'
11581
12295
  -
11582
- required:
11583
- - type
11584
12296
  properties:
11585
12297
  type:
11586
12298
  description: |-
@@ -11596,6 +12308,10 @@ components:
11596
12308
  * Initials Field uses `TemplateResponseDocumentFormFieldInitials`
11597
12309
  type: string
11598
12310
  default: date_signed
12311
+ group:
12312
+ description: 'The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.'
12313
+ type: string
12314
+ nullable: true
11599
12315
  type: object
11600
12316
  TemplateResponseDocumentFormFieldDropdown:
11601
12317
  description: 'This class extends `TemplateResponseDocumentFormFieldBase`'
@@ -11605,8 +12321,6 @@ components:
11605
12321
  -
11606
12322
  $ref: '#/components/schemas/TemplateResponseDocumentFormFieldBase'
11607
12323
  -
11608
- required:
11609
- - type
11610
12324
  properties:
11611
12325
  type:
11612
12326
  description: |-
@@ -11622,6 +12336,10 @@ components:
11622
12336
  * Initials Field uses `TemplateResponseDocumentFormFieldInitials`
11623
12337
  type: string
11624
12338
  default: dropdown
12339
+ group:
12340
+ description: 'The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.'
12341
+ type: string
12342
+ nullable: true
11625
12343
  type: object
11626
12344
  TemplateResponseDocumentFormFieldHyperlink:
11627
12345
  description: 'This class extends `TemplateResponseDocumentFormFieldBase`'
@@ -11631,8 +12349,6 @@ components:
11631
12349
  -
11632
12350
  $ref: '#/components/schemas/TemplateResponseDocumentFormFieldBase'
11633
12351
  -
11634
- required:
11635
- - type
11636
12352
  properties:
11637
12353
  type:
11638
12354
  description: |-
@@ -11659,6 +12375,10 @@ components:
11659
12375
  fontFamily:
11660
12376
  description: 'Font family used in this form field''s text.'
11661
12377
  type: string
12378
+ group:
12379
+ description: 'The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.'
12380
+ type: string
12381
+ nullable: true
11662
12382
  type: object
11663
12383
  TemplateResponseDocumentFormFieldInitials:
11664
12384
  description: 'This class extends `TemplateResponseDocumentFormFieldBase`'
@@ -11668,8 +12388,6 @@ components:
11668
12388
  -
11669
12389
  $ref: '#/components/schemas/TemplateResponseDocumentFormFieldBase'
11670
12390
  -
11671
- required:
11672
- - type
11673
12391
  properties:
11674
12392
  type:
11675
12393
  description: |-
@@ -11685,6 +12403,10 @@ components:
11685
12403
  * Initials Field uses `TemplateResponseDocumentFormFieldInitials`
11686
12404
  type: string
11687
12405
  default: initials
12406
+ group:
12407
+ description: 'The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.'
12408
+ type: string
12409
+ nullable: true
11688
12410
  type: object
11689
12411
  TemplateResponseDocumentFormFieldRadio:
11690
12412
  description: 'This class extends `TemplateResponseDocumentFormFieldBase`'
@@ -11695,8 +12417,6 @@ components:
11695
12417
  -
11696
12418
  $ref: '#/components/schemas/TemplateResponseDocumentFormFieldBase'
11697
12419
  -
11698
- required:
11699
- - type
11700
12420
  properties:
11701
12421
  type:
11702
12422
  description: |-
@@ -11712,6 +12432,9 @@ components:
11712
12432
  * Initials Field uses `TemplateResponseDocumentFormFieldInitials`
11713
12433
  type: string
11714
12434
  default: radio
12435
+ group:
12436
+ description: 'The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.'
12437
+ type: string
11715
12438
  type: object
11716
12439
  TemplateResponseDocumentFormFieldSignature:
11717
12440
  description: 'This class extends `TemplateResponseDocumentFormFieldBase`'
@@ -11721,8 +12444,6 @@ components:
11721
12444
  -
11722
12445
  $ref: '#/components/schemas/TemplateResponseDocumentFormFieldBase'
11723
12446
  -
11724
- required:
11725
- - type
11726
12447
  properties:
11727
12448
  type:
11728
12449
  description: |-
@@ -11738,6 +12459,10 @@ components:
11738
12459
  * Initials Field uses `TemplateResponseDocumentFormFieldInitials`
11739
12460
  type: string
11740
12461
  default: signature
12462
+ group:
12463
+ description: 'The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.'
12464
+ type: string
12465
+ nullable: true
11741
12466
  type: object
11742
12467
  TemplateResponseDocumentFormFieldText:
11743
12468
  description: 'This class extends `TemplateResponseDocumentFormFieldBase`'
@@ -11747,8 +12472,6 @@ components:
11747
12472
  -
11748
12473
  $ref: '#/components/schemas/TemplateResponseDocumentFormFieldBase'
11749
12474
  -
11750
- required:
11751
- - type
11752
12475
  properties:
11753
12476
  type:
11754
12477
  description: |-
@@ -11790,6 +12513,10 @@ components:
11790
12513
  - employer_identification_number
11791
12514
  - custom_regex
11792
12515
  nullable: true
12516
+ group:
12517
+ description: 'The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.'
12518
+ type: string
12519
+ nullable: true
11793
12520
  type: object
11794
12521
  TemplateResponseDocumentStaticFieldBase:
11795
12522
  description: 'An array describing static overlay fields. **NOTE:** Only available for certain subscriptions.'
@@ -11849,8 +12576,6 @@ components:
11849
12576
  -
11850
12577
  $ref: '#/components/schemas/TemplateResponseDocumentStaticFieldBase'
11851
12578
  -
11852
- required:
11853
- - type
11854
12579
  properties:
11855
12580
  type:
11856
12581
  description: |-
@@ -11875,8 +12600,6 @@ components:
11875
12600
  -
11876
12601
  $ref: '#/components/schemas/TemplateResponseDocumentStaticFieldBase'
11877
12602
  -
11878
- required:
11879
- - type
11880
12603
  properties:
11881
12604
  type:
11882
12605
  description: |-
@@ -11901,8 +12624,6 @@ components:
11901
12624
  -
11902
12625
  $ref: '#/components/schemas/TemplateResponseDocumentStaticFieldBase'
11903
12626
  -
11904
- required:
11905
- - type
11906
12627
  properties:
11907
12628
  type:
11908
12629
  description: |-
@@ -11927,8 +12648,6 @@ components:
11927
12648
  -
11928
12649
  $ref: '#/components/schemas/TemplateResponseDocumentStaticFieldBase'
11929
12650
  -
11930
- required:
11931
- - type
11932
12651
  properties:
11933
12652
  type:
11934
12653
  description: |-
@@ -11953,8 +12672,6 @@ components:
11953
12672
  -
11954
12673
  $ref: '#/components/schemas/TemplateResponseDocumentStaticFieldBase'
11955
12674
  -
11956
- required:
11957
- - type
11958
12675
  properties:
11959
12676
  type:
11960
12677
  description: |-
@@ -11979,8 +12696,6 @@ components:
11979
12696
  -
11980
12697
  $ref: '#/components/schemas/TemplateResponseDocumentStaticFieldBase'
11981
12698
  -
11982
- required:
11983
- - type
11984
12699
  properties:
11985
12700
  type:
11986
12701
  description: |-
@@ -12005,8 +12720,6 @@ components:
12005
12720
  -
12006
12721
  $ref: '#/components/schemas/TemplateResponseDocumentStaticFieldBase'
12007
12722
  -
12008
- required:
12009
- - type
12010
12723
  properties:
12011
12724
  type:
12012
12725
  description: |-
@@ -12031,8 +12744,6 @@ components:
12031
12744
  -
12032
12745
  $ref: '#/components/schemas/TemplateResponseDocumentStaticFieldBase'
12033
12746
  -
12034
- required:
12035
- - type
12036
12747
  properties:
12037
12748
  type:
12038
12749
  description: |-
@@ -12418,6 +13129,10 @@ components:
12418
13129
  summary: 'Default Example'
12419
13130
  value:
12420
13131
  $ref: examples/json/FaxLineRemoveUserRequestExample.json
13132
+ FaxSendRequestExample:
13133
+ summary: 'Default Example'
13134
+ value:
13135
+ $ref: examples/json/FaxSendRequestExample.json
12421
13136
  OAuthTokenGenerateRequestExample:
12422
13137
  summary: 'OAuth Token Generate Example'
12423
13138
  value:
@@ -12662,6 +13377,10 @@ components:
12662
13377
  summary: 'Error 4XX failed_operation'
12663
13378
  value:
12664
13379
  $ref: examples/json/Error4XXResponseExample.json
13380
+ FaxGetResponseExample:
13381
+ summary: 'Fax Response'
13382
+ value:
13383
+ $ref: examples/json/FaxGetResponseExample.json
12665
13384
  FaxLineResponseExample:
12666
13385
  summary: 'Sample Fax Line Response'
12667
13386
  value:
@@ -12674,6 +13393,10 @@ components:
12674
13393
  summary: 'Sample Fax Line List Response'
12675
13394
  value:
12676
13395
  $ref: examples/json/FaxLineListResponseExample.json
13396
+ FaxListResponseExample:
13397
+ summary: 'Returns the properties and settings of multiple Faxes.'
13398
+ value:
13399
+ $ref: examples/json/FaxListResponseExample.json
12677
13400
  ReportCreateResponseExample:
12678
13401
  summary: Report
12679
13402
  value: