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
|`grantType`<sup>*_required_</sup> |```string```| When refreshing an existing token use `refresh_token`. |[default to 'refresh_token']|
10
10
|`refreshToken`<sup>*_required_</sup> |```string```| The token provided when you got the expired access token. ||
11
-
|`clientId`|```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
-
|`clientSecret`|```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
+
|`clientId`|```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
+
|`clientSecret`|```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
|`originalFontSize`|```number```| Original font size used in this form field's text. ||
13
13
|`fontFamily`|```string```| Font family used in this form field's text. ||
14
14
|`validationType`|```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
+
|`validationCustomRegex`|```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
+
|`validationCustomRegexFormatLabel`|```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: model/oAuthTokenRefreshRequest.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -34,11 +34,11 @@ export class OAuthTokenRefreshRequest {
34
34
*/
35
35
"refreshToken": string;
36
36
/**
37
-
* 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.
37
+
* 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.
38
38
*/
39
39
"clientId"?: string;
40
40
/**
41
-
* 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.
41
+
* 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: model/templateResponseDocumentFormFieldText.ts
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,14 @@ export class TemplateResponseDocumentFormFieldText extends TemplateResponseDocum
51
51
* 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.
* When `validation_type` is set to `custom_regex`, this specifies the custom regular expression pattern that will be used to validate the text field.
56
+
*/
57
+
"validationCustomRegex"?: string|null;
58
+
/**
59
+
* 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.
60
+
*/
61
+
"validationCustomRegexFormatLabel"?: string|null;
54
62
/**
55
63
* The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields.
56
64
*/
@@ -89,6 +97,16 @@ export class TemplateResponseDocumentFormFieldText extends TemplateResponseDocum
0 commit comments