yousign_client 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +7 -0
- data/README.md +230 -0
- data/Rakefile +8 -0
- data/config.json +11 -0
- data/docs/AuthenticationEmailOutput.md +10 -0
- data/docs/AuthenticationInweboOutput.md +10 -0
- data/docs/AuthenticationSmsOutput.md +10 -0
- data/docs/AuthenticationsApi.md +320 -0
- data/docs/Body.md +8 -0
- data/docs/Body1.md +9 -0
- data/docs/Body2.md +9 -0
- data/docs/CheckDocumentBankAccountsInput.md +13 -0
- data/docs/CheckDocumentBankAccountsOutput.md +24 -0
- data/docs/CheckDocumentIdentitiesInput.md +11 -0
- data/docs/CheckDocumentIdentitiesOutput.md +28 -0
- data/docs/CheckDocumentsApi.md +210 -0
- data/docs/ConfigEmailTemplate.md +11 -0
- data/docs/ConfigWebhookTemplate.md +10 -0
- data/docs/ConsentProcessInput.md +14 -0
- data/docs/ConsentProcessOutput.md +15 -0
- data/docs/ConsentProcessValueInput.md +10 -0
- data/docs/ConsentProcessValueOutput.md +12 -0
- data/docs/ConsentProcessesApi.md +422 -0
- data/docs/FileInput.md +15 -0
- data/docs/FileInputMetadata.md +9 -0
- data/docs/FileObjectInput.md +21 -0
- data/docs/FileObjectInputWithoutFileReference.md +13 -0
- data/docs/FileObjectOutput.md +24 -0
- data/docs/FileObjectOutputWithoutFileReference.md +17 -0
- data/docs/FileObjectsApi.md +220 -0
- data/docs/FileOutput.md +19 -0
- data/docs/FilesApi.md +218 -0
- data/docs/InlineResponse400.md +8 -0
- data/docs/InweboUserRequest.md +8 -0
- data/docs/MemberInput.md +19 -0
- data/docs/MemberOutput.md +24 -0
- data/docs/MembersApi.md +272 -0
- data/docs/ModeSmsConfiguration.md +8 -0
- data/docs/OperationInput.md +14 -0
- data/docs/OperationOutput.md +15 -0
- data/docs/OperationOutputMetadata.md +9 -0
- data/docs/OperationsApi.md +109 -0
- data/docs/OrganizationBillingAddress.md +16 -0
- data/docs/OrganizationOutput.md +41 -0
- data/docs/OrganizationsApi.md +54 -0
- data/docs/ProcedureConfig.md +10 -0
- data/docs/ProcedureConfigEmail.md +15 -0
- data/docs/ProcedureConfigReminder.md +10 -0
- data/docs/ProcedureConfigReminderConfig.md +8 -0
- data/docs/ProcedureConfigReminderConfigEmail.md +8 -0
- data/docs/ProcedureConfigWebhook.md +15 -0
- data/docs/ProcedureDuplicateInput.md +9 -0
- data/docs/ProcedureInput.md +18 -0
- data/docs/ProcedureInputMetadata.md +9 -0
- data/docs/ProcedureOutput.md +27 -0
- data/docs/ProcedureOutputMetadata.md +9 -0
- data/docs/ProcedureRemindConfig.md +8 -0
- data/docs/ProcedureRemindConfigEmail.md +8 -0
- data/docs/ProcedureRemindInput.md +8 -0
- data/docs/ProceduresApi.md +527 -0
- data/docs/ServerStampConfig.md +8 -0
- data/docs/ServerStampConfigWebhook.md +8 -0
- data/docs/ServerStampInput.md +12 -0
- data/docs/ServerStampOutput.md +17 -0
- data/docs/ServerStampsApi.md +109 -0
- data/docs/SignatureUIsApi.md +545 -0
- data/docs/SignatureUiInput.md +28 -0
- data/docs/SignatureUiInputRedirectCancel.md +10 -0
- data/docs/SignatureUiInputRedirectError.md +10 -0
- data/docs/SignatureUiInputRedirectSuccess.md +10 -0
- data/docs/SignatureUiInputUpdate.md +27 -0
- data/docs/SignatureUiLabelInput.md +10 -0
- data/docs/SignatureUiLabelInputIncluded.md +9 -0
- data/docs/SignatureUiLabelOutput.md +14 -0
- data/docs/SignatureUiOutput.md +33 -0
- data/docs/SignatureUiOutputRedirectCancel.md +10 -0
- data/docs/SignatureUiOutputRedirectError.md +10 -0
- data/docs/SignatureUiOutputRedirectSuccess.md +10 -0
- data/docs/UserGroup.md +10 -0
- data/docs/UserGroupsApi.md +103 -0
- data/docs/UserInput.md +17 -0
- data/docs/UserInputNotifications.md +8 -0
- data/docs/UserOutput.md +29 -0
- data/docs/UserOutputNotifications.md +8 -0
- data/docs/UserWorkspaceOutput.md +9 -0
- data/docs/UsersApi.md +258 -0
- data/docs/WorkspaceConfig.md +10 -0
- data/docs/WorkspaceConfigEmail.md +15 -0
- data/docs/WorkspaceConfigProcedure.md +8 -0
- data/docs/WorkspaceOutput.md +16 -0
- data/docs/WorkspacesApi.md +54 -0
- data/git_push.sh +55 -0
- data/lib/yousign_client.rb +126 -0
- data/lib/yousign_client/api/authentications_api.rb +410 -0
- data/lib/yousign_client/api/check_documents_api.rb +269 -0
- data/lib/yousign_client/api/consent_processes_api.rb +528 -0
- data/lib/yousign_client/api/file_objects_api.rb +282 -0
- data/lib/yousign_client/api/files_api.rb +279 -0
- data/lib/yousign_client/api/members_api.rb +340 -0
- data/lib/yousign_client/api/operations_api.rb +148 -0
- data/lib/yousign_client/api/organizations_api.rb +76 -0
- data/lib/yousign_client/api/procedures_api.rb +680 -0
- data/lib/yousign_client/api/server_stamps_api.rb +146 -0
- data/lib/yousign_client/api/signature_u_is_api.rb +669 -0
- data/lib/yousign_client/api/user_groups_api.rb +135 -0
- data/lib/yousign_client/api/users_api.rb +327 -0
- data/lib/yousign_client/api/workspaces_api.rb +76 -0
- data/lib/yousign_client/api_client.rb +391 -0
- data/lib/yousign_client/api_error.rb +38 -0
- data/lib/yousign_client/configuration.rb +209 -0
- data/lib/yousign_client/models/authentication_email_output.rb +239 -0
- data/lib/yousign_client/models/authentication_inwebo_output.rb +239 -0
- data/lib/yousign_client/models/authentication_sms_output.rb +239 -0
- data/lib/yousign_client/models/body.rb +185 -0
- data/lib/yousign_client/models/body_1.rb +200 -0
- data/lib/yousign_client/models/body_2.rb +200 -0
- data/lib/yousign_client/models/check_document_bank_accounts_input.rb +240 -0
- data/lib/yousign_client/models/check_document_bank_accounts_output.rb +394 -0
- data/lib/yousign_client/models/check_document_identities_input.rb +222 -0
- data/lib/yousign_client/models/check_document_identities_output.rb +440 -0
- data/lib/yousign_client/models/config_email_template.rb +256 -0
- data/lib/yousign_client/models/config_webhook_template.rb +246 -0
- data/lib/yousign_client/models/consent_process_input.rb +293 -0
- data/lib/yousign_client/models/consent_process_output.rb +298 -0
- data/lib/yousign_client/models/consent_process_value_input.rb +215 -0
- data/lib/yousign_client/models/consent_process_value_output.rb +235 -0
- data/lib/yousign_client/models/file_input.rb +304 -0
- data/lib/yousign_client/models/file_input_metadata.rb +194 -0
- data/lib/yousign_client/models/file_object_input.rb +445 -0
- data/lib/yousign_client/models/file_object_input_without_file_reference.rb +252 -0
- data/lib/yousign_client/models/file_object_output.rb +489 -0
- data/lib/yousign_client/models/file_object_output_without_file_reference.rb +307 -0
- data/lib/yousign_client/models/file_output.rb +374 -0
- data/lib/yousign_client/models/inline_response_400.rb +185 -0
- data/lib/yousign_client/models/inwebo_user_request.rb +200 -0
- data/lib/yousign_client/models/member_input.rb +343 -0
- data/lib/yousign_client/models/member_output.rb +432 -0
- data/lib/yousign_client/models/mode_sms_configuration.rb +190 -0
- data/lib/yousign_client/models/operation_input.rb +313 -0
- data/lib/yousign_client/models/operation_output.rb +311 -0
- data/lib/yousign_client/models/operation_output_metadata.rb +194 -0
- data/lib/yousign_client/models/organization_billing_address.rb +256 -0
- data/lib/yousign_client/models/organization_output.rb +530 -0
- data/lib/yousign_client/models/procedure_config.rb +204 -0
- data/lib/yousign_client/models/procedure_config_email.rb +263 -0
- data/lib/yousign_client/models/procedure_config_reminder.rb +256 -0
- data/lib/yousign_client/models/procedure_config_reminder_config.rb +184 -0
- data/lib/yousign_client/models/procedure_config_reminder_config_email.rb +186 -0
- data/lib/yousign_client/models/procedure_config_webhook.rb +263 -0
- data/lib/yousign_client/models/procedure_duplicate_input.rb +197 -0
- data/lib/yousign_client/models/procedure_input.rb +289 -0
- data/lib/yousign_client/models/procedure_input_metadata.rb +194 -0
- data/lib/yousign_client/models/procedure_output.rb +457 -0
- data/lib/yousign_client/models/procedure_output_metadata.rb +194 -0
- data/lib/yousign_client/models/procedure_remind_config.rb +184 -0
- data/lib/yousign_client/models/procedure_remind_config_email.rb +186 -0
- data/lib/yousign_client/models/procedure_remind_input.rb +184 -0
- data/lib/yousign_client/models/server_stamp_config.rb +184 -0
- data/lib/yousign_client/models/server_stamp_config_webhook.rb +186 -0
- data/lib/yousign_client/models/server_stamp_input.rb +242 -0
- data/lib/yousign_client/models/server_stamp_output.rb +352 -0
- data/lib/yousign_client/models/signature_ui_input.rb +456 -0
- data/lib/yousign_client/models/signature_ui_input_redirect_cancel.rb +244 -0
- data/lib/yousign_client/models/signature_ui_input_redirect_error.rb +247 -0
- data/lib/yousign_client/models/signature_ui_input_redirect_success.rb +242 -0
- data/lib/yousign_client/models/signature_ui_input_update.rb +421 -0
- data/lib/yousign_client/models/signature_ui_label_input.rb +210 -0
- data/lib/yousign_client/models/signature_ui_label_input_included.rb +200 -0
- data/lib/yousign_client/models/signature_ui_label_output.rb +245 -0
- data/lib/yousign_client/models/signature_ui_output.rb +481 -0
- data/lib/yousign_client/models/signature_ui_output_redirect_cancel.rb +242 -0
- data/lib/yousign_client/models/signature_ui_output_redirect_error.rb +247 -0
- data/lib/yousign_client/models/signature_ui_output_redirect_success.rb +242 -0
- data/lib/yousign_client/models/user_group.rb +249 -0
- data/lib/yousign_client/models/user_input.rb +341 -0
- data/lib/yousign_client/models/user_input_notifications.rb +185 -0
- data/lib/yousign_client/models/user_output.rb +457 -0
- data/lib/yousign_client/models/user_output_notifications.rb +185 -0
- data/lib/yousign_client/models/user_workspace_output.rb +210 -0
- data/lib/yousign_client/models/workspace_config.rb +226 -0
- data/lib/yousign_client/models/workspace_config_email.rb +263 -0
- data/lib/yousign_client/models/workspace_config_procedure.rb +208 -0
- data/lib/yousign_client/models/workspace_output.rb +275 -0
- data/lib/yousign_client/version.rb +15 -0
- data/spec/api/authentications_api_spec.rb +113 -0
- data/spec/api/check_documents_api_spec.rb +85 -0
- data/spec/api/consent_processes_api_spec.rb +138 -0
- data/spec/api/file_objects_api_spec.rb +90 -0
- data/spec/api/files_api_spec.rb +89 -0
- data/spec/api/members_api_spec.rb +103 -0
- data/spec/api/operations_api_spec.rb +60 -0
- data/spec/api/organizations_api_spec.rb +46 -0
- data/spec/api/procedures_api_spec.rb +178 -0
- data/spec/api/server_stamps_api_spec.rb +60 -0
- data/spec/api/signature_u_is_api_spec.rb +170 -0
- data/spec/api/user_groups_api_spec.rb +58 -0
- data/spec/api/users_api_spec.rb +97 -0
- data/spec/api/workspaces_api_spec.rb +46 -0
- data/spec/api_client_spec.rb +243 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/authentication_email_output_spec.rb +57 -0
- data/spec/models/authentication_inwebo_output_spec.rb +57 -0
- data/spec/models/authentication_sms_output_spec.rb +57 -0
- data/spec/models/body_1_spec.rb +47 -0
- data/spec/models/body_2_spec.rb +47 -0
- data/spec/models/body_spec.rb +41 -0
- data/spec/models/check_document_bank_accounts_input_spec.rb +71 -0
- data/spec/models/check_document_bank_accounts_output_spec.rb +141 -0
- data/spec/models/check_document_identities_input_spec.rb +59 -0
- data/spec/models/check_document_identities_output_spec.rb +165 -0
- data/spec/models/config_email_template_spec.rb +63 -0
- data/spec/models/config_webhook_template_spec.rb +57 -0
- data/spec/models/consent_process_input_spec.rb +81 -0
- data/spec/models/consent_process_output_spec.rb +87 -0
- data/spec/models/consent_process_value_input_spec.rb +53 -0
- data/spec/models/consent_process_value_output_spec.rb +65 -0
- data/spec/models/file_input_metadata_spec.rb +47 -0
- data/spec/models/file_input_spec.rb +87 -0
- data/spec/models/file_object_input_spec.rb +127 -0
- data/spec/models/file_object_input_without_file_reference_spec.rb +71 -0
- data/spec/models/file_object_output_spec.rb +145 -0
- data/spec/models/file_object_output_without_file_reference_spec.rb +95 -0
- data/spec/models/file_output_spec.rb +111 -0
- data/spec/models/inline_response_400_spec.rb +41 -0
- data/spec/models/inwebo_user_request_spec.rb +41 -0
- data/spec/models/member_input_spec.rb +119 -0
- data/spec/models/member_output_spec.rb +153 -0
- data/spec/models/mode_sms_configuration_spec.rb +41 -0
- data/spec/models/operation_input_spec.rb +89 -0
- data/spec/models/operation_output_metadata_spec.rb +47 -0
- data/spec/models/operation_output_spec.rb +95 -0
- data/spec/models/organization_billing_address_spec.rb +89 -0
- data/spec/models/organization_output_spec.rb +239 -0
- data/spec/models/procedure_config_email_spec.rb +83 -0
- data/spec/models/procedure_config_reminder_config_email_spec.rb +41 -0
- data/spec/models/procedure_config_reminder_config_spec.rb +41 -0
- data/spec/models/procedure_config_reminder_spec.rb +53 -0
- data/spec/models/procedure_config_spec.rb +53 -0
- data/spec/models/procedure_config_webhook_spec.rb +83 -0
- data/spec/models/procedure_duplicate_input_spec.rb +47 -0
- data/spec/models/procedure_input_metadata_spec.rb +47 -0
- data/spec/models/procedure_input_spec.rb +101 -0
- data/spec/models/procedure_output_metadata_spec.rb +47 -0
- data/spec/models/procedure_output_spec.rb +159 -0
- data/spec/models/procedure_remind_config_email_spec.rb +41 -0
- data/spec/models/procedure_remind_config_spec.rb +41 -0
- data/spec/models/procedure_remind_input_spec.rb +41 -0
- data/spec/models/server_stamp_config_spec.rb +41 -0
- data/spec/models/server_stamp_config_webhook_spec.rb +41 -0
- data/spec/models/server_stamp_input_spec.rb +65 -0
- data/spec/models/server_stamp_output_spec.rb +99 -0
- data/spec/models/signature_ui_input_redirect_cancel_spec.rb +57 -0
- data/spec/models/signature_ui_input_redirect_error_spec.rb +57 -0
- data/spec/models/signature_ui_input_redirect_success_spec.rb +57 -0
- data/spec/models/signature_ui_input_spec.rb +165 -0
- data/spec/models/signature_ui_input_update_spec.rb +159 -0
- data/spec/models/signature_ui_label_input_included_spec.rb +47 -0
- data/spec/models/signature_ui_label_input_spec.rb +53 -0
- data/spec/models/signature_ui_label_output_spec.rb +77 -0
- data/spec/models/signature_ui_output_redirect_cancel_spec.rb +57 -0
- data/spec/models/signature_ui_output_redirect_error_spec.rb +57 -0
- data/spec/models/signature_ui_output_redirect_success_spec.rb +57 -0
- data/spec/models/signature_ui_output_spec.rb +195 -0
- data/spec/models/user_group_spec.rb +57 -0
- data/spec/models/user_input_notifications_spec.rb +41 -0
- data/spec/models/user_input_spec.rb +99 -0
- data/spec/models/user_output_notifications_spec.rb +41 -0
- data/spec/models/user_output_spec.rb +171 -0
- data/spec/models/user_workspace_output_spec.rb +47 -0
- data/spec/models/workspace_config_email_spec.rb +83 -0
- data/spec/models/workspace_config_procedure_spec.rb +45 -0
- data/spec/models/workspace_config_spec.rb +57 -0
- data/spec/models/workspace_output_spec.rb +89 -0
- data/spec/spec_helper.rb +111 -0
- data/update_client.sh +11 -0
- data/yousign_client.gemspec +45 -0
- data/yousign_openapi.json +5417 -0
- metadata +590 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# YousignClient::ServerStampConfigWebhook
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**server_stamp_finished** | [**Array<ConfigWebhookTemplate>**](ConfigWebhookTemplate.md) | | [optional]
|
|
7
|
+
|
|
8
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# YousignClient::ServerStampInput
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**file** | **String** | Resource file uri |
|
|
7
|
+
**certificate** | **String** | Resource certificate uri (please contact support for more informations) |
|
|
8
|
+
**config** | [**Array<ServerStampConfig>**](ServerStampConfig.md) | | [optional]
|
|
9
|
+
**file_objects** | [**Array<FileObjectInputWithoutFileReference>**](FileObjectInputWithoutFileReference.md) | |
|
|
10
|
+
**sign_image** | **String** | Image signature in base 64 | [optional]
|
|
11
|
+
|
|
12
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# YousignClient::ServerStampOutput
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**id** | **String** | Resource server stamp uri |
|
|
7
|
+
**file** | **String** | Resource file uri |
|
|
8
|
+
**certificate** | **String** | Resource certificate uri (please contact support for more informations) |
|
|
9
|
+
**config** | [**Array<ServerStampConfig>**](ServerStampConfig.md) | | [optional]
|
|
10
|
+
**file_objects** | [**Array<FileObjectOutputWithoutFileReference>**](FileObjectOutputWithoutFileReference.md) | |
|
|
11
|
+
**created_at** | **DateTime** | |
|
|
12
|
+
**updated_at** | **DateTime** | |
|
|
13
|
+
**finished_at** | **DateTime** | |
|
|
14
|
+
**status** | **String** | |
|
|
15
|
+
**workspace** | **String** | Resource workspace uri |
|
|
16
|
+
|
|
17
|
+
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
# YousignClient::ServerStampsApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *https://api.yousign.com*
|
|
4
|
+
|
|
5
|
+
Method | HTTP request | Description
|
|
6
|
+
------------- | ------------- | -------------
|
|
7
|
+
[**server_stamps_id_get**](ServerStampsApi.md#server_stamps_id_get) | **GET** /server_stamps/{id} | Find a Server Stamp by ID
|
|
8
|
+
[**server_stamps_post**](ServerStampsApi.md#server_stamps_post) | **POST** /server_stamps | Create a Server Stamp
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
# **server_stamps_id_get**
|
|
12
|
+
> ServerStampOutput server_stamps_id_get(id, authorization)
|
|
13
|
+
|
|
14
|
+
Find a Server Stamp by ID
|
|
15
|
+
|
|
16
|
+
### Example
|
|
17
|
+
```ruby
|
|
18
|
+
# load the gem
|
|
19
|
+
require 'yousign_client'
|
|
20
|
+
|
|
21
|
+
api_instance = YousignClient::ServerStampsApi.new
|
|
22
|
+
|
|
23
|
+
id = 'id_example' # String |
|
|
24
|
+
|
|
25
|
+
authorization = 'Bearer {{access_token}}' # String | Authentication credentials for HTTP authentication
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
begin
|
|
29
|
+
#Find a Server Stamp by ID
|
|
30
|
+
result = api_instance.server_stamps_id_get(id, authorization)
|
|
31
|
+
p result
|
|
32
|
+
rescue YousignClient::ApiError => e
|
|
33
|
+
puts "Exception when calling ServerStampsApi->server_stamps_id_get: #{e}"
|
|
34
|
+
end
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### Parameters
|
|
38
|
+
|
|
39
|
+
Name | Type | Description | Notes
|
|
40
|
+
------------- | ------------- | ------------- | -------------
|
|
41
|
+
**id** | **String**| |
|
|
42
|
+
**authorization** | **String**| Authentication credentials for HTTP authentication |
|
|
43
|
+
|
|
44
|
+
### Return type
|
|
45
|
+
|
|
46
|
+
[**ServerStampOutput**](ServerStampOutput.md)
|
|
47
|
+
|
|
48
|
+
### Authorization
|
|
49
|
+
|
|
50
|
+
No authorization required
|
|
51
|
+
|
|
52
|
+
### HTTP request headers
|
|
53
|
+
|
|
54
|
+
- **Content-Type**: application/json
|
|
55
|
+
- **Accept**: application/json
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
# **server_stamps_post**
|
|
60
|
+
> ServerStampOutput server_stamps_post(authorization, content_type, body)
|
|
61
|
+
|
|
62
|
+
Create a Server Stamp
|
|
63
|
+
|
|
64
|
+
### Example
|
|
65
|
+
```ruby
|
|
66
|
+
# load the gem
|
|
67
|
+
require 'yousign_client'
|
|
68
|
+
|
|
69
|
+
api_instance = YousignClient::ServerStampsApi.new
|
|
70
|
+
|
|
71
|
+
authorization = 'Bearer {{access_token}}' # String | Authentication credentials for HTTP authentication
|
|
72
|
+
|
|
73
|
+
content_type = 'application/json' # String | The MIME type of the body of the request
|
|
74
|
+
|
|
75
|
+
body = YousignClient::ServerStampInput.new # ServerStampInput |
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
begin
|
|
79
|
+
#Create a Server Stamp
|
|
80
|
+
result = api_instance.server_stamps_post(authorization, content_type, body)
|
|
81
|
+
p result
|
|
82
|
+
rescue YousignClient::ApiError => e
|
|
83
|
+
puts "Exception when calling ServerStampsApi->server_stamps_post: #{e}"
|
|
84
|
+
end
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
### Parameters
|
|
88
|
+
|
|
89
|
+
Name | Type | Description | Notes
|
|
90
|
+
------------- | ------------- | ------------- | -------------
|
|
91
|
+
**authorization** | **String**| Authentication credentials for HTTP authentication |
|
|
92
|
+
**content_type** | **String**| The MIME type of the body of the request |
|
|
93
|
+
**body** | [**ServerStampInput**](ServerStampInput.md)| |
|
|
94
|
+
|
|
95
|
+
### Return type
|
|
96
|
+
|
|
97
|
+
[**ServerStampOutput**](ServerStampOutput.md)
|
|
98
|
+
|
|
99
|
+
### Authorization
|
|
100
|
+
|
|
101
|
+
No authorization required
|
|
102
|
+
|
|
103
|
+
### HTTP request headers
|
|
104
|
+
|
|
105
|
+
- **Content-Type**: Not defined
|
|
106
|
+
- **Accept**: application/json
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
@@ -0,0 +1,545 @@
|
|
|
1
|
+
# YousignClient::SignatureUIsApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *https://api.yousign.com*
|
|
4
|
+
|
|
5
|
+
Method | HTTP request | Description
|
|
6
|
+
------------- | ------------- | -------------
|
|
7
|
+
[**signature_ui_labels_get**](SignatureUIsApi.md#signature_ui_labels_get) | **GET** /signature_ui_labels | Get Signature UI Labels
|
|
8
|
+
[**signature_ui_labels_id_delete**](SignatureUIsApi.md#signature_ui_labels_id_delete) | **DELETE** /signature_ui_labels/{id} | Delete a Signature UI Label
|
|
9
|
+
[**signature_ui_labels_id_get**](SignatureUIsApi.md#signature_ui_labels_id_get) | **GET** /signature_ui_labels/{id} | Find a Signature UI Label by ID
|
|
10
|
+
[**signature_ui_labels_id_put**](SignatureUIsApi.md#signature_ui_labels_id_put) | **PUT** /signature_ui_labels/{id} | Update a Signature UI Label
|
|
11
|
+
[**signature_ui_labels_post**](SignatureUIsApi.md#signature_ui_labels_post) | **POST** /signature_ui_labels | Create a new Signature UI Label
|
|
12
|
+
[**signature_uis_get**](SignatureUIsApi.md#signature_uis_get) | **GET** /signature_uis | Get Signature UI list
|
|
13
|
+
[**signature_uis_id_delete**](SignatureUIsApi.md#signature_uis_id_delete) | **DELETE** /signature_uis/{id} | Delete a Signature UI
|
|
14
|
+
[**signature_uis_id_get**](SignatureUIsApi.md#signature_uis_id_get) | **GET** /signature_uis/{id} | Find a Signature UI by ID
|
|
15
|
+
[**signature_uis_id_put**](SignatureUIsApi.md#signature_uis_id_put) | **PUT** /signature_uis/{id} | Update a Signature UI
|
|
16
|
+
[**signature_uis_post**](SignatureUIsApi.md#signature_uis_post) | **POST** /signature_uis | Create a new Signature UI
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
# **signature_ui_labels_get**
|
|
20
|
+
> Array<SignatureUiLabelOutput> signature_ui_labels_get(authorization, opts)
|
|
21
|
+
|
|
22
|
+
Get Signature UI Labels
|
|
23
|
+
|
|
24
|
+
Only usefull if you use a filter with name or signatureUI
|
|
25
|
+
|
|
26
|
+
### Example
|
|
27
|
+
```ruby
|
|
28
|
+
# load the gem
|
|
29
|
+
require 'yousign_client'
|
|
30
|
+
|
|
31
|
+
api_instance = YousignClient::SignatureUIsApi.new
|
|
32
|
+
|
|
33
|
+
authorization = 'Bearer {{access_token}}' # String | Authentication credentials for HTTP authentication
|
|
34
|
+
|
|
35
|
+
opts = {
|
|
36
|
+
name: 'name_example', # String | Filtering on name of signature ui labels
|
|
37
|
+
signature_ui: 'signature_ui_example' # String | Filtering on id of signature ui resource
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
begin
|
|
41
|
+
#Get Signature UI Labels
|
|
42
|
+
result = api_instance.signature_ui_labels_get(authorization, opts)
|
|
43
|
+
p result
|
|
44
|
+
rescue YousignClient::ApiError => e
|
|
45
|
+
puts "Exception when calling SignatureUIsApi->signature_ui_labels_get: #{e}"
|
|
46
|
+
end
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
### Parameters
|
|
50
|
+
|
|
51
|
+
Name | Type | Description | Notes
|
|
52
|
+
------------- | ------------- | ------------- | -------------
|
|
53
|
+
**authorization** | **String**| Authentication credentials for HTTP authentication |
|
|
54
|
+
**name** | **String**| Filtering on name of signature ui labels | [optional]
|
|
55
|
+
**signature_ui** | **String**| Filtering on id of signature ui resource | [optional]
|
|
56
|
+
|
|
57
|
+
### Return type
|
|
58
|
+
|
|
59
|
+
[**Array<SignatureUiLabelOutput>**](SignatureUiLabelOutput.md)
|
|
60
|
+
|
|
61
|
+
### Authorization
|
|
62
|
+
|
|
63
|
+
No authorization required
|
|
64
|
+
|
|
65
|
+
### HTTP request headers
|
|
66
|
+
|
|
67
|
+
- **Content-Type**: application/json
|
|
68
|
+
- **Accept**: application/json
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
# **signature_ui_labels_id_delete**
|
|
73
|
+
> signature_ui_labels_id_delete(id, authorization, opts)
|
|
74
|
+
|
|
75
|
+
Delete a Signature UI Label
|
|
76
|
+
|
|
77
|
+
### Example
|
|
78
|
+
```ruby
|
|
79
|
+
# load the gem
|
|
80
|
+
require 'yousign_client'
|
|
81
|
+
|
|
82
|
+
api_instance = YousignClient::SignatureUIsApi.new
|
|
83
|
+
|
|
84
|
+
id = 'id_example' # String |
|
|
85
|
+
|
|
86
|
+
authorization = 'Bearer {{access_token}}' # String | Authentication credentials for HTTP authentication
|
|
87
|
+
|
|
88
|
+
opts = {
|
|
89
|
+
id2: '/signature_ui_labels/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx' # String | Id of signature ui label
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
begin
|
|
93
|
+
#Delete a Signature UI Label
|
|
94
|
+
api_instance.signature_ui_labels_id_delete(id, authorization, opts)
|
|
95
|
+
rescue YousignClient::ApiError => e
|
|
96
|
+
puts "Exception when calling SignatureUIsApi->signature_ui_labels_id_delete: #{e}"
|
|
97
|
+
end
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
### Parameters
|
|
101
|
+
|
|
102
|
+
Name | Type | Description | Notes
|
|
103
|
+
------------- | ------------- | ------------- | -------------
|
|
104
|
+
**id** | **String**| |
|
|
105
|
+
**authorization** | **String**| Authentication credentials for HTTP authentication |
|
|
106
|
+
**id2** | **String**| Id of signature ui label | [optional]
|
|
107
|
+
|
|
108
|
+
### Return type
|
|
109
|
+
|
|
110
|
+
nil (empty response body)
|
|
111
|
+
|
|
112
|
+
### Authorization
|
|
113
|
+
|
|
114
|
+
No authorization required
|
|
115
|
+
|
|
116
|
+
### HTTP request headers
|
|
117
|
+
|
|
118
|
+
- **Content-Type**: application/json
|
|
119
|
+
- **Accept**: application/json
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
# **signature_ui_labels_id_get**
|
|
124
|
+
> SignatureUiLabelOutput signature_ui_labels_id_get(id, authorization, opts)
|
|
125
|
+
|
|
126
|
+
Find a Signature UI Label by ID
|
|
127
|
+
|
|
128
|
+
### Example
|
|
129
|
+
```ruby
|
|
130
|
+
# load the gem
|
|
131
|
+
require 'yousign_client'
|
|
132
|
+
|
|
133
|
+
api_instance = YousignClient::SignatureUIsApi.new
|
|
134
|
+
|
|
135
|
+
id = 'id_example' # String |
|
|
136
|
+
|
|
137
|
+
authorization = 'Bearer {{access_token}}' # String | Authentication credentials for HTTP authentication
|
|
138
|
+
|
|
139
|
+
opts = {
|
|
140
|
+
id2: '/signature_ui_labels/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx' # String | id of signature ui label
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
begin
|
|
144
|
+
#Find a Signature UI Label by ID
|
|
145
|
+
result = api_instance.signature_ui_labels_id_get(id, authorization, opts)
|
|
146
|
+
p result
|
|
147
|
+
rescue YousignClient::ApiError => e
|
|
148
|
+
puts "Exception when calling SignatureUIsApi->signature_ui_labels_id_get: #{e}"
|
|
149
|
+
end
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
### Parameters
|
|
153
|
+
|
|
154
|
+
Name | Type | Description | Notes
|
|
155
|
+
------------- | ------------- | ------------- | -------------
|
|
156
|
+
**id** | **String**| |
|
|
157
|
+
**authorization** | **String**| Authentication credentials for HTTP authentication |
|
|
158
|
+
**id2** | **String**| id of signature ui label | [optional]
|
|
159
|
+
|
|
160
|
+
### Return type
|
|
161
|
+
|
|
162
|
+
[**SignatureUiLabelOutput**](SignatureUiLabelOutput.md)
|
|
163
|
+
|
|
164
|
+
### Authorization
|
|
165
|
+
|
|
166
|
+
No authorization required
|
|
167
|
+
|
|
168
|
+
### HTTP request headers
|
|
169
|
+
|
|
170
|
+
- **Content-Type**: application/json
|
|
171
|
+
- **Accept**: application/json
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
# **signature_ui_labels_id_put**
|
|
176
|
+
> SignatureUiLabelOutput signature_ui_labels_id_put(id, authorization, content_type, body, opts)
|
|
177
|
+
|
|
178
|
+
Update a Signature UI Label
|
|
179
|
+
|
|
180
|
+
### Example
|
|
181
|
+
```ruby
|
|
182
|
+
# load the gem
|
|
183
|
+
require 'yousign_client'
|
|
184
|
+
|
|
185
|
+
api_instance = YousignClient::SignatureUIsApi.new
|
|
186
|
+
|
|
187
|
+
id = 'id_example' # String |
|
|
188
|
+
|
|
189
|
+
authorization = 'Bearer {{access_token}}' # String | Authentication credentials for HTTP authentication
|
|
190
|
+
|
|
191
|
+
content_type = 'application/json' # String | The MIME type of the body of the request
|
|
192
|
+
|
|
193
|
+
body = YousignClient::SignatureUiLabelInput.new # SignatureUiLabelInput |
|
|
194
|
+
|
|
195
|
+
opts = {
|
|
196
|
+
id2: '/signature_ui_labels/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx' # String | Id of signature ui labels
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
begin
|
|
200
|
+
#Update a Signature UI Label
|
|
201
|
+
result = api_instance.signature_ui_labels_id_put(id, authorization, content_type, body, opts)
|
|
202
|
+
p result
|
|
203
|
+
rescue YousignClient::ApiError => e
|
|
204
|
+
puts "Exception when calling SignatureUIsApi->signature_ui_labels_id_put: #{e}"
|
|
205
|
+
end
|
|
206
|
+
```
|
|
207
|
+
|
|
208
|
+
### Parameters
|
|
209
|
+
|
|
210
|
+
Name | Type | Description | Notes
|
|
211
|
+
------------- | ------------- | ------------- | -------------
|
|
212
|
+
**id** | **String**| |
|
|
213
|
+
**authorization** | **String**| Authentication credentials for HTTP authentication |
|
|
214
|
+
**content_type** | **String**| The MIME type of the body of the request |
|
|
215
|
+
**body** | [**SignatureUiLabelInput**](SignatureUiLabelInput.md)| |
|
|
216
|
+
**id2** | **String**| Id of signature ui labels | [optional]
|
|
217
|
+
|
|
218
|
+
### Return type
|
|
219
|
+
|
|
220
|
+
[**SignatureUiLabelOutput**](SignatureUiLabelOutput.md)
|
|
221
|
+
|
|
222
|
+
### Authorization
|
|
223
|
+
|
|
224
|
+
No authorization required
|
|
225
|
+
|
|
226
|
+
### HTTP request headers
|
|
227
|
+
|
|
228
|
+
- **Content-Type**: Not defined
|
|
229
|
+
- **Accept**: application/json
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
# **signature_ui_labels_post**
|
|
234
|
+
> SignatureUiLabelOutput signature_ui_labels_post(authorization, content_type, body)
|
|
235
|
+
|
|
236
|
+
Create a new Signature UI Label
|
|
237
|
+
|
|
238
|
+
### Example
|
|
239
|
+
```ruby
|
|
240
|
+
# load the gem
|
|
241
|
+
require 'yousign_client'
|
|
242
|
+
|
|
243
|
+
api_instance = YousignClient::SignatureUIsApi.new
|
|
244
|
+
|
|
245
|
+
authorization = 'Bearer {{access_token}}' # String | Authentication credentials for HTTP authentication
|
|
246
|
+
|
|
247
|
+
content_type = 'application/json' # String | The MIME type of the body of the request
|
|
248
|
+
|
|
249
|
+
body = YousignClient::SignatureUiLabelInput.new # SignatureUiLabelInput |
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
begin
|
|
253
|
+
#Create a new Signature UI Label
|
|
254
|
+
result = api_instance.signature_ui_labels_post(authorization, content_type, body)
|
|
255
|
+
p result
|
|
256
|
+
rescue YousignClient::ApiError => e
|
|
257
|
+
puts "Exception when calling SignatureUIsApi->signature_ui_labels_post: #{e}"
|
|
258
|
+
end
|
|
259
|
+
```
|
|
260
|
+
|
|
261
|
+
### Parameters
|
|
262
|
+
|
|
263
|
+
Name | Type | Description | Notes
|
|
264
|
+
------------- | ------------- | ------------- | -------------
|
|
265
|
+
**authorization** | **String**| Authentication credentials for HTTP authentication |
|
|
266
|
+
**content_type** | **String**| The MIME type of the body of the request |
|
|
267
|
+
**body** | [**SignatureUiLabelInput**](SignatureUiLabelInput.md)| |
|
|
268
|
+
|
|
269
|
+
### Return type
|
|
270
|
+
|
|
271
|
+
[**SignatureUiLabelOutput**](SignatureUiLabelOutput.md)
|
|
272
|
+
|
|
273
|
+
### Authorization
|
|
274
|
+
|
|
275
|
+
No authorization required
|
|
276
|
+
|
|
277
|
+
### HTTP request headers
|
|
278
|
+
|
|
279
|
+
- **Content-Type**: Not defined
|
|
280
|
+
- **Accept**: application/json
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
# **signature_uis_get**
|
|
285
|
+
> Array<SignatureUiOutput> signature_uis_get(authorization)
|
|
286
|
+
|
|
287
|
+
Get Signature UI list
|
|
288
|
+
|
|
289
|
+
### Example
|
|
290
|
+
```ruby
|
|
291
|
+
# load the gem
|
|
292
|
+
require 'yousign_client'
|
|
293
|
+
|
|
294
|
+
api_instance = YousignClient::SignatureUIsApi.new
|
|
295
|
+
|
|
296
|
+
authorization = 'Bearer {{access_token}}' # String | Authentication credentials for HTTP authentication
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
begin
|
|
300
|
+
#Get Signature UI list
|
|
301
|
+
result = api_instance.signature_uis_get(authorization)
|
|
302
|
+
p result
|
|
303
|
+
rescue YousignClient::ApiError => e
|
|
304
|
+
puts "Exception when calling SignatureUIsApi->signature_uis_get: #{e}"
|
|
305
|
+
end
|
|
306
|
+
```
|
|
307
|
+
|
|
308
|
+
### Parameters
|
|
309
|
+
|
|
310
|
+
Name | Type | Description | Notes
|
|
311
|
+
------------- | ------------- | ------------- | -------------
|
|
312
|
+
**authorization** | **String**| Authentication credentials for HTTP authentication |
|
|
313
|
+
|
|
314
|
+
### Return type
|
|
315
|
+
|
|
316
|
+
[**Array<SignatureUiOutput>**](SignatureUiOutput.md)
|
|
317
|
+
|
|
318
|
+
### Authorization
|
|
319
|
+
|
|
320
|
+
No authorization required
|
|
321
|
+
|
|
322
|
+
### HTTP request headers
|
|
323
|
+
|
|
324
|
+
- **Content-Type**: application/json
|
|
325
|
+
- **Accept**: application/json
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
# **signature_uis_id_delete**
|
|
330
|
+
> signature_uis_id_delete(id, authorization, content_type, opts)
|
|
331
|
+
|
|
332
|
+
Delete a Signature UI
|
|
333
|
+
|
|
334
|
+
### Example
|
|
335
|
+
```ruby
|
|
336
|
+
# load the gem
|
|
337
|
+
require 'yousign_client'
|
|
338
|
+
|
|
339
|
+
api_instance = YousignClient::SignatureUIsApi.new
|
|
340
|
+
|
|
341
|
+
id = 'id_example' # String |
|
|
342
|
+
|
|
343
|
+
authorization = 'Bearer {{access_token}}' # String | Authentication credentials for HTTP authentication
|
|
344
|
+
|
|
345
|
+
content_type = 'application/json' # String | The MIME type of the body of the request
|
|
346
|
+
|
|
347
|
+
opts = {
|
|
348
|
+
id2: '/signature_uis/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx' # String | Id of the signature ui
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
begin
|
|
352
|
+
#Delete a Signature UI
|
|
353
|
+
api_instance.signature_uis_id_delete(id, authorization, content_type, opts)
|
|
354
|
+
rescue YousignClient::ApiError => e
|
|
355
|
+
puts "Exception when calling SignatureUIsApi->signature_uis_id_delete: #{e}"
|
|
356
|
+
end
|
|
357
|
+
```
|
|
358
|
+
|
|
359
|
+
### Parameters
|
|
360
|
+
|
|
361
|
+
Name | Type | Description | Notes
|
|
362
|
+
------------- | ------------- | ------------- | -------------
|
|
363
|
+
**id** | **String**| |
|
|
364
|
+
**authorization** | **String**| Authentication credentials for HTTP authentication |
|
|
365
|
+
**content_type** | **String**| The MIME type of the body of the request |
|
|
366
|
+
**id2** | **String**| Id of the signature ui | [optional]
|
|
367
|
+
|
|
368
|
+
### Return type
|
|
369
|
+
|
|
370
|
+
nil (empty response body)
|
|
371
|
+
|
|
372
|
+
### Authorization
|
|
373
|
+
|
|
374
|
+
No authorization required
|
|
375
|
+
|
|
376
|
+
### HTTP request headers
|
|
377
|
+
|
|
378
|
+
- **Content-Type**: application/json
|
|
379
|
+
- **Accept**: application/json
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
# **signature_uis_id_get**
|
|
384
|
+
> SignatureUiOutput signature_uis_id_get(id, authorization, content_type, opts)
|
|
385
|
+
|
|
386
|
+
Find a Signature UI by ID
|
|
387
|
+
|
|
388
|
+
### Example
|
|
389
|
+
```ruby
|
|
390
|
+
# load the gem
|
|
391
|
+
require 'yousign_client'
|
|
392
|
+
|
|
393
|
+
api_instance = YousignClient::SignatureUIsApi.new
|
|
394
|
+
|
|
395
|
+
id = 'id_example' # String |
|
|
396
|
+
|
|
397
|
+
authorization = 'Bearer {{access_token}}' # String | Authentication credentials for HTTP authentication
|
|
398
|
+
|
|
399
|
+
content_type = 'application/json' # String | The MIME type of the body of the request
|
|
400
|
+
|
|
401
|
+
opts = {
|
|
402
|
+
id2: '/signature_uis/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx' # String | id of a signature ui
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
begin
|
|
406
|
+
#Find a Signature UI by ID
|
|
407
|
+
result = api_instance.signature_uis_id_get(id, authorization, content_type, opts)
|
|
408
|
+
p result
|
|
409
|
+
rescue YousignClient::ApiError => e
|
|
410
|
+
puts "Exception when calling SignatureUIsApi->signature_uis_id_get: #{e}"
|
|
411
|
+
end
|
|
412
|
+
```
|
|
413
|
+
|
|
414
|
+
### Parameters
|
|
415
|
+
|
|
416
|
+
Name | Type | Description | Notes
|
|
417
|
+
------------- | ------------- | ------------- | -------------
|
|
418
|
+
**id** | **String**| |
|
|
419
|
+
**authorization** | **String**| Authentication credentials for HTTP authentication |
|
|
420
|
+
**content_type** | **String**| The MIME type of the body of the request |
|
|
421
|
+
**id2** | **String**| id of a signature ui | [optional]
|
|
422
|
+
|
|
423
|
+
### Return type
|
|
424
|
+
|
|
425
|
+
[**SignatureUiOutput**](SignatureUiOutput.md)
|
|
426
|
+
|
|
427
|
+
### Authorization
|
|
428
|
+
|
|
429
|
+
No authorization required
|
|
430
|
+
|
|
431
|
+
### HTTP request headers
|
|
432
|
+
|
|
433
|
+
- **Content-Type**: application/json
|
|
434
|
+
- **Accept**: application/json
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
# **signature_uis_id_put**
|
|
439
|
+
> SignatureUiInputUpdate signature_uis_id_put(id, authorization, content_type, opts)
|
|
440
|
+
|
|
441
|
+
Update a Signature UI
|
|
442
|
+
|
|
443
|
+
### Example
|
|
444
|
+
```ruby
|
|
445
|
+
# load the gem
|
|
446
|
+
require 'yousign_client'
|
|
447
|
+
|
|
448
|
+
api_instance = YousignClient::SignatureUIsApi.new
|
|
449
|
+
|
|
450
|
+
id = 'id_example' # String |
|
|
451
|
+
|
|
452
|
+
authorization = 'Bearer {{access_token}}' # String | Authentication credentials for HTTP authentication
|
|
453
|
+
|
|
454
|
+
content_type = 'application/json' # String | The MIME type of the body of the request
|
|
455
|
+
|
|
456
|
+
opts = {
|
|
457
|
+
id2: '/signature_uis/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx' # String | id of signature ui to update
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
begin
|
|
461
|
+
#Update a Signature UI
|
|
462
|
+
result = api_instance.signature_uis_id_put(id, authorization, content_type, opts)
|
|
463
|
+
p result
|
|
464
|
+
rescue YousignClient::ApiError => e
|
|
465
|
+
puts "Exception when calling SignatureUIsApi->signature_uis_id_put: #{e}"
|
|
466
|
+
end
|
|
467
|
+
```
|
|
468
|
+
|
|
469
|
+
### Parameters
|
|
470
|
+
|
|
471
|
+
Name | Type | Description | Notes
|
|
472
|
+
------------- | ------------- | ------------- | -------------
|
|
473
|
+
**id** | **String**| |
|
|
474
|
+
**authorization** | **String**| Authentication credentials for HTTP authentication |
|
|
475
|
+
**content_type** | **String**| The MIME type of the body of the request |
|
|
476
|
+
**id2** | **String**| id of signature ui to update | [optional]
|
|
477
|
+
|
|
478
|
+
### Return type
|
|
479
|
+
|
|
480
|
+
[**SignatureUiInputUpdate**](SignatureUiInputUpdate.md)
|
|
481
|
+
|
|
482
|
+
### Authorization
|
|
483
|
+
|
|
484
|
+
No authorization required
|
|
485
|
+
|
|
486
|
+
### HTTP request headers
|
|
487
|
+
|
|
488
|
+
- **Content-Type**: application/json
|
|
489
|
+
- **Accept**: application/json
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
# **signature_uis_post**
|
|
494
|
+
> SignatureUiOutput signature_uis_post(authorization, content_type, body)
|
|
495
|
+
|
|
496
|
+
Create a new Signature UI
|
|
497
|
+
|
|
498
|
+
Here is the url format to build on your side to get a custom signature interface with your settings : https://webapp.yousign.com/procedure/sign?members=~2Fmembers~2F__MEMBER_ID__&signatureUi=~2Fsignature_uis~2F__SIGNATURE_UI_ID__
|
|
499
|
+
|
|
500
|
+
### Example
|
|
501
|
+
```ruby
|
|
502
|
+
# load the gem
|
|
503
|
+
require 'yousign_client'
|
|
504
|
+
|
|
505
|
+
api_instance = YousignClient::SignatureUIsApi.new
|
|
506
|
+
|
|
507
|
+
authorization = 'Bearer {{access_token}}' # String | Authentication credentials for HTTP authentication
|
|
508
|
+
|
|
509
|
+
content_type = 'application/json' # String | The MIME type of the body of the request
|
|
510
|
+
|
|
511
|
+
body = YousignClient::SignatureUiInput.new # SignatureUiInput |
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
begin
|
|
515
|
+
#Create a new Signature UI
|
|
516
|
+
result = api_instance.signature_uis_post(authorization, content_type, body)
|
|
517
|
+
p result
|
|
518
|
+
rescue YousignClient::ApiError => e
|
|
519
|
+
puts "Exception when calling SignatureUIsApi->signature_uis_post: #{e}"
|
|
520
|
+
end
|
|
521
|
+
```
|
|
522
|
+
|
|
523
|
+
### Parameters
|
|
524
|
+
|
|
525
|
+
Name | Type | Description | Notes
|
|
526
|
+
------------- | ------------- | ------------- | -------------
|
|
527
|
+
**authorization** | **String**| Authentication credentials for HTTP authentication |
|
|
528
|
+
**content_type** | **String**| The MIME type of the body of the request |
|
|
529
|
+
**body** | [**SignatureUiInput**](SignatureUiInput.md)| |
|
|
530
|
+
|
|
531
|
+
### Return type
|
|
532
|
+
|
|
533
|
+
[**SignatureUiOutput**](SignatureUiOutput.md)
|
|
534
|
+
|
|
535
|
+
### Authorization
|
|
536
|
+
|
|
537
|
+
No authorization required
|
|
538
|
+
|
|
539
|
+
### HTTP request headers
|
|
540
|
+
|
|
541
|
+
- **Content-Type**: Not defined
|
|
542
|
+
- **Accept**: application/json
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
|