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
|`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. ||
13
13
14
14
[[Back to Model list]](../../README.md#models)[[Back to API list]](../../README.md#endpoints)[[Back to README]](../../README.md)
Copy file name to clipboardExpand all lines: docs/Model/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,6 +12,8 @@ Name | Type | Description | Notes
12
12
|`original_font_size`|```int```| 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. ||
16
18
17
19
[[Back to Model list]](../../README.md#models)[[Back to API list]](../../README.md#endpoints)[[Back to README]](../../README.md)
Copy file name to clipboardExpand all lines: openapi-sdk.yaml
+14-4Lines changed: 14 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -7797,7 +7797,7 @@ components:
7797
7797
type: array
7798
7798
items:
7799
7799
type: string
7800
-
maxItems: 2
7800
+
maxItems: 10
7801
7801
minItems: 1
7802
7802
name:
7803
7803
description: 'The name you want to assign to the ApiApp.'
@@ -7823,7 +7823,7 @@ components:
7823
7823
type: array
7824
7824
items:
7825
7825
type: string
7826
-
maxItems: 2
7826
+
maxItems: 10
7827
7827
name:
7828
7828
description: 'The name you want to assign to the ApiApp.'
7829
7829
type: string
@@ -8112,10 +8112,10 @@ components:
8112
8112
description: 'The token provided when you got the expired access token.'
8113
8113
type: string
8114
8114
client_id:
8115
-
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.'
8115
+
description: '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.'
8116
8116
type: string
8117
8117
client_secret:
8118
-
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.'
8118
+
description: '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.'
8119
8119
type: string
8120
8120
type: object
8121
8121
ReportCreateRequest:
@@ -8135,6 +8135,7 @@ components:
8135
8135
enum:
8136
8136
- user_activity
8137
8137
- document_status
8138
+
- sms_activity
8138
8139
maxItems: 2
8139
8140
minItems: 1
8140
8141
start_date:
@@ -11964,6 +11965,7 @@ components:
11964
11965
enum:
11965
11966
- user_activity
11966
11967
- document_status
11968
+
- sms_activity
11967
11969
type: object
11968
11970
x-internal-class: true
11969
11971
SignatureRequestResponse:
@@ -13130,6 +13132,14 @@ components:
13130
13132
- employer_identification_number
13131
13133
- custom_regex
13132
13134
nullable: true
13135
+
validation_custom_regex:
13136
+
description: 'When `validation_type` is set to `custom_regex`, this specifies the custom regular expression pattern that will be used to validate the text field.'
13137
+
type: string
13138
+
nullable: true
13139
+
validation_custom_regex_format_label:
13140
+
description: '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.'
13141
+
type: string
13142
+
nullable: true
13133
13143
group:
13134
13144
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.'
0 commit comments