You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/OAuthTokenRefreshRequest.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,6 @@
8
8
| ---- | ---- | ----------- | ----- |
9
9
|`grant_type`<sup>*_required_</sup> |```String```| When refreshing an existing token use `refresh_token`. |[default to 'refresh_token']|
10
10
|`refresh_token`<sup>*_required_</sup> |```String```| The token provided when you got the expired access token. ||
11
-
|`client_id`|```String```| 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. ||
12
-
|`client_secret`|```String```| 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. ||
11
+
|`client_id`|```String```| The client ID for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings. ||
12
+
|`client_secret`|```String```| The client secret for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings. ||
Copy file name to clipboardExpand all lines: docs/TemplateResponseDocumentFormFieldText.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,5 +12,7 @@ This class extends `TemplateResponseDocumentFormFieldBase`
12
12
|`original_font_size`|```Integer```| Original font size used in this form field's text. ||
13
13
|`font_family`|```String```| Font family used in this form field's text. ||
14
14
|`validation_type`|```String```| Each text field may contain a `validation_type` parameter. Check out the list of [validation types](https://faq.hellosign.com/hc/en-us/articles/217115577) to learn more about the possible values. ||
15
+
|`validation_custom_regex`|```String```| When `validation_type` is set to `custom_regex`, this specifies the custom regular expression pattern that will be used to validate the text field. ||
16
+
|`validation_custom_regex_format_label`|```String```| When `validation_type` is set to `custom_regex`, this specifies the error message displayed to the signer when the text does not match the provided regex pattern. ||
15
17
|`group`|```String```| The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields. ||
Copy file name to clipboardExpand all lines: lib/dropbox-sign/models/o_auth_token_refresh_request.rb
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -26,11 +26,11 @@ class OAuthTokenRefreshRequest
26
26
# @return [String]
27
27
attr_accessor:refresh_token
28
28
29
-
# 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.
29
+
# The client ID for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings.
30
30
# @return [String]
31
31
attr_accessor:client_id
32
32
33
-
# 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.
33
+
# The client secret for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings.
Copy file name to clipboardExpand all lines: lib/dropbox-sign/models/template_response_document_form_field_text.rb
+25-1Lines changed: 25 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,14 @@ class TemplateResponseDocumentFormFieldText < TemplateResponseDocumentFormFieldB
42
42
# @return [String, nil]
43
43
attr_accessor:validation_type
44
44
45
+
# When `validation_type` is set to `custom_regex`, this specifies the custom regular expression pattern that will be used to validate the text field.
46
+
# @return [String, nil]
47
+
attr_accessor:validation_custom_regex
48
+
49
+
# When `validation_type` is set to `custom_regex`, this specifies the error message displayed to the signer when the text does not match the provided regex pattern.
0 commit comments