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: openapi-sdk.yaml
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6260,7 +6260,12 @@ paths:
6260
6260
tags:
6261
6261
- Template
6262
6262
summary: 'Create Template'
6263
-
description: 'Creates a template that can then be used.'
6263
+
description: |-
6264
+
Creates a template that can be used in future signature requests.
6265
+
6266
+
If `client_id` is provided, the template will be created as an embedded template. Embedded templates can be used for embedded signature requests and can be edited later by generating a new `edit_url` with [/embedded/edit_url/{template_id}](/api/reference/operation/embeddedEditUrl/).
6267
+
6268
+
Template creation may complete asynchronously after the initial request is accepted. It is recommended that a callback be implemented to listen for the callback event. A `template_created` event indicates the template is ready to use, while a `template_error` event indicates there was a problem while creating the template. 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 and retry the request if necessary.
Copy file name to clipboardExpand all lines: openapi.yaml
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6260,7 +6260,12 @@ paths:
6260
6260
tags:
6261
6261
- Template
6262
6262
summary: 'Create Template'
6263
-
description: 'Creates a template that can then be used.'
6263
+
description: |-
6264
+
Creates a template that can be used in future signature requests.
6265
+
6266
+
If `client_id` is provided, the template will be created as an embedded template. Embedded templates can be used for embedded signature requests and can be edited later by generating a new `edit_url` with [/embedded/edit_url/{template_id}](/api/reference/operation/embeddedEditUrl/).
6267
+
6268
+
Template creation may complete asynchronously after the initial request is accepted. It is recommended that a callback be implemented to listen for the callback event. A `template_created` event indicates the template is ready to use, while a `template_error` event indicates there was a problem while creating the template. 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 and retry the request if necessary.
Copy file name to clipboardExpand all lines: sdks/dotnet/docs/TemplateApi.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -125,7 +125,7 @@ catch (ApiException e)
125
125
126
126
Create Template
127
127
128
-
Creates a template that can then be used.
128
+
Creates a template that can be used in future signature requests. If `client_id` is provided, the template will be created as an embedded template. Embedded templates can be used for embedded signature requests and can be edited later by generating a new `edit_url` with [/embedded/edit_url/{template_id}](/api/reference/operation/embeddedEditUrl/). Template creation may complete asynchronously after the initial request is accepted. It is recommended that a callback be implemented to listen for the callback event. A `template_created` event indicates the template is ready to use, while a `template_error` event indicates there was a problem while creating the template. 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 and retry the request if necessary.
Copy file name to clipboardExpand all lines: sdks/dotnet/src/Dropbox.Sign/Api/TemplateApi.cs
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ public interface ITemplateApiSync : IApiAccessor
56
56
/// Create Template
57
57
/// </summary>
58
58
/// <remarks>
59
-
/// Creates a template that can then be used.
59
+
/// Creates a template that can be used in future signature requests. If `client_id` is provided, the template will be created as an embedded template. Embedded templates can be used for embedded signature requests and can be edited later by generating a new `edit_url` with [/embedded/edit_url/{template_id}](/api/reference/operation/embeddedEditUrl/). Template creation may complete asynchronously after the initial request is accepted. It is recommended that a callback be implemented to listen for the callback event. A `template_created` event indicates the template is ready to use, while a `template_error` event indicates there was a problem while creating the template. 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 and retry the request if necessary.
60
60
/// </remarks>
61
61
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
62
62
/// <param name="templateCreateRequest"></param>
@@ -68,7 +68,7 @@ public interface ITemplateApiSync : IApiAccessor
68
68
/// Create Template
69
69
/// </summary>
70
70
/// <remarks>
71
-
/// Creates a template that can then be used.
71
+
/// Creates a template that can be used in future signature requests. If `client_id` is provided, the template will be created as an embedded template. Embedded templates can be used for embedded signature requests and can be edited later by generating a new `edit_url` with [/embedded/edit_url/{template_id}](/api/reference/operation/embeddedEditUrl/). Template creation may complete asynchronously after the initial request is accepted. It is recommended that a callback be implemented to listen for the callback event. A `template_created` event indicates the template is ready to use, while a `template_error` event indicates there was a problem while creating the template. 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 and retry the request if necessary.
72
72
/// </remarks>
73
73
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
74
74
/// <param name="templateCreateRequest"></param>
@@ -361,7 +361,7 @@ public interface ITemplateApiAsync : IApiAccessor
361
361
/// Create Template
362
362
/// </summary>
363
363
/// <remarks>
364
-
/// Creates a template that can then be used.
364
+
/// Creates a template that can be used in future signature requests. If `client_id` is provided, the template will be created as an embedded template. Embedded templates can be used for embedded signature requests and can be edited later by generating a new `edit_url` with [/embedded/edit_url/{template_id}](/api/reference/operation/embeddedEditUrl/). Template creation may complete asynchronously after the initial request is accepted. It is recommended that a callback be implemented to listen for the callback event. A `template_created` event indicates the template is ready to use, while a `template_error` event indicates there was a problem while creating the template. 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 and retry the request if necessary.
365
365
/// </remarks>
366
366
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
367
367
/// <param name="templateCreateRequest"></param>
@@ -374,7 +374,7 @@ public interface ITemplateApiAsync : IApiAccessor
374
374
/// Create Template
375
375
/// </summary>
376
376
/// <remarks>
377
-
/// Creates a template that can then be used.
377
+
/// Creates a template that can be used in future signature requests. If `client_id` is provided, the template will be created as an embedded template. Embedded templates can be used for embedded signature requests and can be edited later by generating a new `edit_url` with [/embedded/edit_url/{template_id}](/api/reference/operation/embeddedEditUrl/). Template creation may complete asynchronously after the initial request is accepted. It is recommended that a callback be implemented to listen for the callback event. A `template_created` event indicates the template is ready to use, while a `template_error` event indicates there was a problem while creating the template. 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 and retry the request if necessary.
378
378
/// </remarks>
379
379
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
380
380
/// <param name="templateCreateRequest"></param>
@@ -971,7 +971,7 @@ public Dropbox.Sign.Client.ApiResponse<TemplateGetResponse> TemplateAddUserWithH
971
971
}
972
972
973
973
/// <summary>
974
-
/// Create Template Creates a template that can then be used.
974
+
/// Create Template Creates a template that can be used in future signature requests. If `client_id` is provided, the template will be created as an embedded template. Embedded templates can be used for embedded signature requests and can be edited later by generating a new `edit_url` with [/embedded/edit_url/{template_id}](/api/reference/operation/embeddedEditUrl/). Template creation may complete asynchronously after the initial request is accepted. It is recommended that a callback be implemented to listen for the callback event. A `template_created` event indicates the template is ready to use, while a `template_error` event indicates there was a problem while creating the template. 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 and retry the request if necessary.
975
975
/// </summary>
976
976
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
977
977
/// <param name="templateCreateRequest"></param>
@@ -984,7 +984,7 @@ public TemplateCreateResponse TemplateCreate(TemplateCreateRequest templateCreat
984
984
}
985
985
986
986
/// <summary>
987
-
/// Create Template Creates a template that can then be used.
987
+
/// Create Template Creates a template that can be used in future signature requests. If `client_id` is provided, the template will be created as an embedded template. Embedded templates can be used for embedded signature requests and can be edited later by generating a new `edit_url` with [/embedded/edit_url/{template_id}](/api/reference/operation/embeddedEditUrl/). Template creation may complete asynchronously after the initial request is accepted. It is recommended that a callback be implemented to listen for the callback event. A `template_created` event indicates the template is ready to use, while a `template_error` event indicates there was a problem while creating the template. 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 and retry the request if necessary.
988
988
/// </summary>
989
989
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
990
990
/// <param name="templateCreateRequest"></param>
@@ -1061,7 +1061,7 @@ public Dropbox.Sign.Client.ApiResponse<TemplateCreateResponse> TemplateCreateWit
1061
1061
}
1062
1062
1063
1063
/// <summary>
1064
-
/// Create Template Creates a template that can then be used.
1064
+
/// Create Template Creates a template that can be used in future signature requests. If `client_id` is provided, the template will be created as an embedded template. Embedded templates can be used for embedded signature requests and can be edited later by generating a new `edit_url` with [/embedded/edit_url/{template_id}](/api/reference/operation/embeddedEditUrl/). Template creation may complete asynchronously after the initial request is accepted. It is recommended that a callback be implemented to listen for the callback event. A `template_created` event indicates the template is ready to use, while a `template_error` event indicates there was a problem while creating the template. 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 and retry the request if necessary.
1065
1065
/// </summary>
1066
1066
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
1067
1067
/// <param name="templateCreateRequest"></param>
@@ -1075,7 +1075,7 @@ public Dropbox.Sign.Client.ApiResponse<TemplateCreateResponse> TemplateCreateWit
1075
1075
}
1076
1076
1077
1077
/// <summary>
1078
-
/// Create Template Creates a template that can then be used.
1078
+
/// Create Template Creates a template that can be used in future signature requests. If `client_id` is provided, the template will be created as an embedded template. Embedded templates can be used for embedded signature requests and can be edited later by generating a new `edit_url` with [/embedded/edit_url/{template_id}](/api/reference/operation/embeddedEditUrl/). Template creation may complete asynchronously after the initial request is accepted. It is recommended that a callback be implemented to listen for the callback event. A `template_created` event indicates the template is ready to use, while a `template_error` event indicates there was a problem while creating the template. 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 and retry the request if necessary.
1079
1079
/// </summary>
1080
1080
/// <exception cref="Dropbox.Sign.Client.ApiException">Thrown when fails to make API call</exception>
Copy file name to clipboardExpand all lines: sdks/java-v1/docs/TemplateApi.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -112,7 +112,11 @@ public class TemplateAddUserExample
112
112
113
113
Create Template
114
114
115
-
Creates a template that can then be used.
115
+
Creates a template that can be used in future signature requests.
116
+
117
+
If `client_id` is provided, the template will be created as an embedded template. Embedded templates can be used for embedded signature requests and can be edited later by generating a new `edit_url` with [/embedded/edit_url/{template_id}](/api/reference/operation/embeddedEditUrl/).
118
+
119
+
Template creation may complete asynchronously after the initial request is accepted. It is recommended that a callback be implemented to listen for the callback event. A `template_created` event indicates the template is ready to use, while a `template_error` event indicates there was a problem while creating the template. 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 and retry the request if necessary.
Copy file name to clipboardExpand all lines: sdks/java-v2/docs/TemplateApi.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -112,7 +112,11 @@ public class TemplateAddUserExample
112
112
113
113
Create Template
114
114
115
-
Creates a template that can then be used.
115
+
Creates a template that can be used in future signature requests.
116
+
117
+
If `client_id` is provided, the template will be created as an embedded template. Embedded templates can be used for embedded signature requests and can be edited later by generating a new `edit_url` with [/embedded/edit_url/{template_id}](/api/reference/operation/embeddedEditUrl/).
118
+
119
+
Template creation may complete asynchronously after the initial request is accepted. It is recommended that a callback be implemented to listen for the callback event. A `template_created` event indicates the template is ready to use, while a `template_error` event indicates there was a problem while creating the template. 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 and retry the request if necessary.
0 commit comments