Skip to content

Commit 5ad56f4

Browse files
Adding form view support
1 parent 78bfe89 commit 5ad56f4

147 files changed

Lines changed: 2031 additions & 40 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

openapi-raw.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7740,6 +7740,10 @@ components:
77407740
description: '_t__EmbeddedEditUrl::ALLOW_EDIT_CCS'
77417741
type: boolean
77427742
default: false
7743+
allow_form_view:
7744+
description: '_t__EmbeddedEditUrl::ALLOW_FORM_VIEW'
7745+
type: boolean
7746+
default: false
77437747
cc_roles:
77447748
description: '_t__EmbeddedEditUrl::CC_ROLES'
77457749
type: array
@@ -8177,6 +8181,10 @@ components:
81778181
description: '_t__SignatureRequestCreateEmbedded::ALLOW_DECLINE'
81788182
type: boolean
81798183
default: false
8184+
allow_form_view:
8185+
description: '_t__SignatureRequestCreateEmbedded::ALLOW_FORM_VIEW'
8186+
type: boolean
8187+
default: false
81808188
allow_reassign:
81818189
description: '_t__SignatureRequestCreateEmbedded::ALLOW_REASSIGN'
81828190
type: boolean
@@ -8356,6 +8364,10 @@ components:
83568364
description: '_t__SignatureRequestSend::ALLOW_DECLINE'
83578365
type: boolean
83588366
default: false
8367+
allow_form_view:
8368+
description: '_t__SignatureRequestSend::ALLOW_FORM_VIEW'
8369+
type: boolean
8370+
default: false
83598371
allow_reassign:
83608372
description: '_t__SignatureRequestSend::ALLOW_REASSIGN'
83618373
type: boolean
@@ -8468,6 +8480,10 @@ components:
84688480
description: '_t__SignatureRequestCreateEmbedded::ALLOW_DECLINE'
84698481
type: boolean
84708482
default: false
8483+
allow_form_view:
8484+
description: '_t__SignatureRequestCreateEmbedded::ALLOW_FORM_VIEW'
8485+
type: boolean
8486+
default: false
84718487
allow_reassign:
84728488
description: '_t__SignatureRequestCreateEmbedded::ALLOW_REASSIGN'
84738489
type: boolean
@@ -8738,6 +8754,10 @@ components:
87388754
description: '_t__SignatureRequestSend::ALLOW_REASSIGN'
87398755
type: boolean
87408756
default: false
8757+
allow_form_view:
8758+
description: '_t__SignatureRequestSend::ALLOW_FORM_VIEW'
8759+
type: boolean
8760+
default: false
87418761
attachments:
87428762
description: '_t__SubAttachment::LIST_DESCRIPTION'
87438763
type: array
@@ -9889,6 +9909,10 @@ components:
98899909
description: '_t__TemplateCreate::ALLOW_REASSIGN'
98909910
type: boolean
98919911
default: false
9912+
allow_form_view:
9913+
description: '_t__TemplateCreate::ALLOW_FORM_VIEW'
9914+
type: boolean
9915+
default: false
98929916
attachments:
98939917
description: '_t__SubAttachment::LIST_DESCRIPTION'
98949918
type: array
@@ -9977,6 +10001,10 @@ components:
997710001
description: '_t__TemplateCreateEmbeddedDraft::ALLOW_REASSIGN'
997810002
type: boolean
997910003
default: false
10004+
allow_form_view:
10005+
description: '_t__TemplateCreateEmbeddedDraft::ALLOW_FORM_VIEW'
10006+
type: boolean
10007+
default: false
998010008
attachments:
998110009
description: '_t__SubAttachment::LIST_DESCRIPTION'
998210010
type: array
@@ -10123,6 +10151,10 @@ components:
1012310151
description: '_t__UnclaimedDraftCreate::ALLOW_DECLINE'
1012410152
type: boolean
1012510153
default: false
10154+
allow_form_view:
10155+
description: '_t__UnclaimedDraftCreate::ALLOW_FORM_VIEW'
10156+
type: boolean
10157+
default: false
1012610158
attachments:
1012710159
description: '_t__SubAttachment::LIST_DESCRIPTION'
1012810160
type: array
@@ -10238,6 +10270,10 @@ components:
1023810270
description: '_t__UnclaimedDraftCreateEmbedded::ALLOW_DECLINE'
1023910271
type: boolean
1024010272
default: false
10273+
allow_form_view:
10274+
description: '_t__UnclaimedDraftCreateEmbedded::ALLOW_FORM_VIEW'
10275+
type: boolean
10276+
default: false
1024110277
allow_reassign:
1024210278
description: '_t__UnclaimedDraftCreateEmbedded::ALLOW_REASSIGN'
1024310279
type: boolean

openapi-sdk.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7840,6 +7840,10 @@ components:
78407840
description: 'This allows the requester to enable/disable to add or change CC roles when editing the template.'
78417841
type: boolean
78427842
default: false
7843+
allow_form_view:
7844+
description: 'Allows signers to view the form fields before signing if set to `true`. Defaults to `false`.'
7845+
type: boolean
7846+
default: false
78437847
cc_roles:
78447848
description: 'The CC roles that must be assigned when using the template to send a signature request. To remove all CC roles, pass in a single role with no name. For use in a POST request.'
78457849
type: array
@@ -8361,6 +8365,10 @@ components:
83618365
description: 'Allows signers to decline to sign a document if `true`. Defaults to `false`.'
83628366
type: boolean
83638367
default: false
8368+
allow_form_view:
8369+
description: 'Allows signers to view the form fields before signing if set to `true`. Defaults to `false`.'
8370+
type: boolean
8371+
default: false
83648372
allow_reassign:
83658373
description: |-
83668374
Allows signers to reassign their signature requests to other signers if set to `true`. Defaults to `false`.
@@ -8595,6 +8603,10 @@ components:
85958603
description: 'Allows signers to decline to sign a document if `true`. Defaults to `false`.'
85968604
type: boolean
85978605
default: false
8606+
allow_form_view:
8607+
description: 'Allows signers to view the form fields before signing if set to `true`. Defaults to `false`.'
8608+
type: boolean
8609+
default: false
85988610
allow_reassign:
85998611
description: |-
86008612
Allows signers to reassign their signature requests to other signers if set to `true`. Defaults to `false`.
@@ -8751,6 +8763,10 @@ components:
87518763
description: 'Allows signers to decline to sign a document if `true`. Defaults to `false`.'
87528764
type: boolean
87538765
default: false
8766+
allow_form_view:
8767+
description: 'Allows signers to view the form fields before signing if set to `true`. Defaults to `false`.'
8768+
type: boolean
8769+
default: false
87548770
allow_reassign:
87558771
description: |-
87568772
Allows signers to reassign their signature requests to other signers if set to `true`. Defaults to `false`.
@@ -9092,6 +9108,10 @@ components:
90929108
**NOTE:** Only available for Premium plan and higher.
90939109
type: boolean
90949110
default: false
9111+
allow_form_view:
9112+
description: 'Allows signers to view the form fields before signing if set to `true`. Defaults to `false`.'
9113+
type: boolean
9114+
default: false
90959115
attachments:
90969116
description: 'A list describing the attachments'
90979117
type: array
@@ -10475,6 +10495,10 @@ components:
1047510495
**NOTE:** Only available for Premium plan and higher.
1047610496
type: boolean
1047710497
default: false
10498+
allow_form_view:
10499+
description: 'Allows signers to view the form fields before signing if set to `true`. Defaults to `false`.'
10500+
type: boolean
10501+
default: false
1047810502
attachments:
1047910503
description: 'A list describing the attachments'
1048010504
type: array
@@ -10591,6 +10615,10 @@ components:
1059110615
**NOTE:** Only available for Premium plan and higher.
1059210616
type: boolean
1059310617
default: false
10618+
allow_form_view:
10619+
description: 'Allows signers to view the form fields before signing if set to `true`. Defaults to `false`.'
10620+
type: boolean
10621+
default: false
1059410622
attachments:
1059510623
description: 'A list describing the attachments'
1059610624
type: array
@@ -10772,6 +10800,10 @@ components:
1077210800
description: 'Allows signers to decline to sign a document if `true`. Defaults to `false`.'
1077310801
type: boolean
1077410802
default: false
10803+
allow_form_view:
10804+
description: 'Allows signers to view the form fields before signing if set to `true`. Defaults to `false`.'
10805+
type: boolean
10806+
default: false
1077510807
attachments:
1077610808
description: 'A list describing the attachments'
1077710809
type: array
@@ -10918,6 +10950,10 @@ components:
1091810950
description: 'Allows signers to decline to sign a document if `true`. Defaults to `false`.'
1091910951
type: boolean
1092010952
default: false
10953+
allow_form_view:
10954+
description: 'Allows signers to view the form fields before signing if set to `true`. Defaults to `false`.'
10955+
type: boolean
10956+
default: false
1092110957
allow_reassign:
1092210958
description: |-
1092310959
Allows signers to reassign their signature requests to other signers if set to `true`. Defaults to `false`.

openapi.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7840,6 +7840,10 @@ components:
78407840
description: 'This allows the requester to enable/disable to add or change CC roles when editing the template.'
78417841
type: boolean
78427842
default: false
7843+
allow_form_view:
7844+
description: 'Allows signers to view the form fields before signing if set to `true`. Defaults to `false`.'
7845+
type: boolean
7846+
default: false
78437847
cc_roles:
78447848
description: 'The CC roles that must be assigned when using the template to send a signature request. To remove all CC roles, pass in a single role with no name. For use in a POST request.'
78457849
type: array
@@ -8361,6 +8365,10 @@ components:
83618365
description: 'Allows signers to decline to sign a document if `true`. Defaults to `false`.'
83628366
type: boolean
83638367
default: false
8368+
allow_form_view:
8369+
description: 'Allows signers to view the form fields before signing if set to `true`. Defaults to `false`.'
8370+
type: boolean
8371+
default: false
83648372
allow_reassign:
83658373
description: |-
83668374
Allows signers to reassign their signature requests to other signers if set to `true`. Defaults to `false`.
@@ -8595,6 +8603,10 @@ components:
85958603
description: 'Allows signers to decline to sign a document if `true`. Defaults to `false`.'
85968604
type: boolean
85978605
default: false
8606+
allow_form_view:
8607+
description: 'Allows signers to view the form fields before signing if set to `true`. Defaults to `false`.'
8608+
type: boolean
8609+
default: false
85988610
allow_reassign:
85998611
description: |-
86008612
Allows signers to reassign their signature requests to other signers if set to `true`. Defaults to `false`.
@@ -8751,6 +8763,10 @@ components:
87518763
description: 'Allows signers to decline to sign a document if `true`. Defaults to `false`.'
87528764
type: boolean
87538765
default: false
8766+
allow_form_view:
8767+
description: 'Allows signers to view the form fields before signing if set to `true`. Defaults to `false`.'
8768+
type: boolean
8769+
default: false
87548770
allow_reassign:
87558771
description: |-
87568772
Allows signers to reassign their signature requests to other signers if set to `true`. Defaults to `false`.
@@ -9092,6 +9108,10 @@ components:
90929108
**NOTE:** Only available for Premium plan and higher.
90939109
type: boolean
90949110
default: false
9111+
allow_form_view:
9112+
description: 'Allows signers to view the form fields before signing if set to `true`. Defaults to `false`.'
9113+
type: boolean
9114+
default: false
90959115
attachments:
90969116
description: 'A list describing the attachments'
90979117
type: array
@@ -10453,6 +10473,10 @@ components:
1045310473
**NOTE:** Only available for Premium plan and higher.
1045410474
type: boolean
1045510475
default: false
10476+
allow_form_view:
10477+
description: 'Allows signers to view the form fields before signing if set to `true`. Defaults to `false`.'
10478+
type: boolean
10479+
default: false
1045610480
attachments:
1045710481
description: 'A list describing the attachments'
1045810482
type: array
@@ -10569,6 +10593,10 @@ components:
1056910593
**NOTE:** Only available for Premium plan and higher.
1057010594
type: boolean
1057110595
default: false
10596+
allow_form_view:
10597+
description: 'Allows signers to view the form fields before signing if set to `true`. Defaults to `false`.'
10598+
type: boolean
10599+
default: false
1057210600
attachments:
1057310601
description: 'A list describing the attachments'
1057410602
type: array
@@ -10750,6 +10778,10 @@ components:
1075010778
description: 'Allows signers to decline to sign a document if `true`. Defaults to `false`.'
1075110779
type: boolean
1075210780
default: false
10781+
allow_form_view:
10782+
description: 'Allows signers to view the form fields before signing if set to `true`. Defaults to `false`.'
10783+
type: boolean
10784+
default: false
1075310785
attachments:
1075410786
description: 'A list describing the attachments'
1075510787
type: array
@@ -10896,6 +10928,10 @@ components:
1089610928
description: 'Allows signers to decline to sign a document if `true`. Defaults to `false`.'
1089710929
type: boolean
1089810930
default: false
10931+
allow_form_view:
10932+
description: 'Allows signers to view the form fields before signing if set to `true`. Defaults to `false`.'
10933+
type: boolean
10934+
default: false
1089910935
allow_reassign:
1090010936
description: |-
1090110937
Allows signers to reassign their signature requests to other signers if set to `true`. Defaults to `false`.

sdks/dotnet/docs/EmbeddedEditUrlRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**AllowEditCcs** | **bool** | This allows the requester to enable/disable to add or change CC roles when editing the template. | [optional] [default to false]**CcRoles** | **List&lt;string&gt;** | The CC roles that must be assigned when using the template to send a signature request. To remove all CC roles, pass in a single role with no name. For use in a POST request. | [optional] **EditorOptions** | [**SubEditorOptions**](SubEditorOptions.md) | | [optional] **ForceSignerRoles** | **bool** | Provide users the ability to review/edit the template signer roles. | [optional] [default to false]**ForceSubjectMessage** | **bool** | Provide users the ability to review/edit the template subject and message. | [optional] [default to false]**MergeFields** | [**List&lt;SubMergeField&gt;**](SubMergeField.md) | Add additional merge fields to the template, which can be used used to pre-fill data by passing values into signature requests made with that template.<br><br>Remove all merge fields on the template by passing an empty array `[]`. | [optional] **PreviewOnly** | **bool** | This allows the requester to enable the preview experience (i.e. does not allow the requester&#39;s end user to add any additional fields via the editor).<br><br>**NOTE:** This parameter overwrites `show_preview&#x3D;true` (if set). | [optional] [default to false]**ShowPreview** | **bool** | This allows the requester to enable the editor/preview experience. | [optional] [default to false]**ShowProgressStepper** | **bool** | When only one step remains in the signature request process and this parameter is set to `false` then the progress stepper will be hidden. | [optional] [default to true]**TestMode** | **bool** | Whether this is a test, locked templates will only be available for editing if this is set to `true`. Defaults to `false`. | [optional] [default to false]
7+
**AllowEditCcs** | **bool** | This allows the requester to enable/disable to add or change CC roles when editing the template. | [optional] [default to false]**AllowFormView** | **bool** | Allows signers to view the form fields before signing if set to `true`. Defaults to `false`. | [optional] [default to false]**CcRoles** | **List&lt;string&gt;** | The CC roles that must be assigned when using the template to send a signature request. To remove all CC roles, pass in a single role with no name. For use in a POST request. | [optional] **EditorOptions** | [**SubEditorOptions**](SubEditorOptions.md) | | [optional] **ForceSignerRoles** | **bool** | Provide users the ability to review/edit the template signer roles. | [optional] [default to false]**ForceSubjectMessage** | **bool** | Provide users the ability to review/edit the template subject and message. | [optional] [default to false]**MergeFields** | [**List&lt;SubMergeField&gt;**](SubMergeField.md) | Add additional merge fields to the template, which can be used used to pre-fill data by passing values into signature requests made with that template.<br><br>Remove all merge fields on the template by passing an empty array `[]`. | [optional] **PreviewOnly** | **bool** | This allows the requester to enable the preview experience (i.e. does not allow the requester&#39;s end user to add any additional fields via the editor).<br><br>**NOTE:** This parameter overwrites `show_preview&#x3D;true` (if set). | [optional] [default to false]**ShowPreview** | **bool** | This allows the requester to enable the editor/preview experience. | [optional] [default to false]**ShowProgressStepper** | **bool** | When only one step remains in the signature request process and this parameter is set to `false` then the progress stepper will be hidden. | [optional] [default to true]**TestMode** | **bool** | Whether this is a test, locked templates will only be available for editing if this is set to `true`. Defaults to `false`. | [optional] [default to false]
88

99
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1010

0 commit comments

Comments
 (0)