signrequest_client 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (188) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +7 -0
  3. data/Gemfile.lock +69 -0
  4. data/LICENSE +21 -0
  5. data/README.md +122 -0
  6. data/Rakefile +9 -0
  7. data/docs/ApiTokensApi.md +226 -0
  8. data/docs/AuthToken.md +13 -0
  9. data/docs/Document.md +33 -0
  10. data/docs/DocumentAttachment.md +15 -0
  11. data/docs/DocumentAttachmentsApi.md +179 -0
  12. data/docs/DocumentSearch.md +22 -0
  13. data/docs/DocumentSignerTemplateConf.md +14 -0
  14. data/docs/DocumentsApi.md +301 -0
  15. data/docs/DocumentsSearchApi.md +119 -0
  16. data/docs/Event.md +17 -0
  17. data/docs/EventsApi.md +145 -0
  18. data/docs/FileFromSf.md +9 -0
  19. data/docs/InlineDocumentSignerIntegrationData.md +9 -0
  20. data/docs/InlineIntegrationData.md +9 -0
  21. data/docs/InlinePrefillTags.md +11 -0
  22. data/docs/InlineResponse200.md +11 -0
  23. data/docs/InlineResponse2001.md +11 -0
  24. data/docs/InlineResponse2002.md +11 -0
  25. data/docs/InlineResponse2003.md +11 -0
  26. data/docs/InlineResponse2004.md +11 -0
  27. data/docs/InlineResponse2005.md +11 -0
  28. data/docs/InlineResponse2006.md +11 -0
  29. data/docs/InlineResponse2007.md +11 -0
  30. data/docs/InlineResponse2008.md +11 -0
  31. data/docs/InlineResponse2009.md +11 -0
  32. data/docs/InlineSignRequest.md +25 -0
  33. data/docs/InlineTeam.md +10 -0
  34. data/docs/InlineTeamMember.md +13 -0
  35. data/docs/InviteMember.md +10 -0
  36. data/docs/Placeholder.md +15 -0
  37. data/docs/RequiredAttachment.md +9 -0
  38. data/docs/SignRequest.md +29 -0
  39. data/docs/SignRequestQuickCreate.md +42 -0
  40. data/docs/Signer.md +40 -0
  41. data/docs/SignerAttachment.md +11 -0
  42. data/docs/SignerInputs.md +14 -0
  43. data/docs/SigningLog.md +9 -0
  44. data/docs/SignrequestQuickCreateApi.md +62 -0
  45. data/docs/SignrequestsApi.md +291 -0
  46. data/docs/Team.md +15 -0
  47. data/docs/TeamMember.md +14 -0
  48. data/docs/TeamMembersApi.md +131 -0
  49. data/docs/TeamsApi.md +344 -0
  50. data/docs/Template.md +14 -0
  51. data/docs/TemplatesApi.md +119 -0
  52. data/docs/User.md +11 -0
  53. data/docs/WebhookSubscription.md +15 -0
  54. data/docs/WebhooksApi.md +340 -0
  55. data/git_push.sh +55 -0
  56. data/lib/signrequest_client/api/api_tokens_api.rb +242 -0
  57. data/lib/signrequest_client/api/document_attachments_api.rb +197 -0
  58. data/lib/signrequest_client/api/documents_api.rb +330 -0
  59. data/lib/signrequest_client/api/documents_search_api.rb +133 -0
  60. data/lib/signrequest_client/api/events_api.rb +172 -0
  61. data/lib/signrequest_client/api/signrequest_quick_create_api.rb +78 -0
  62. data/lib/signrequest_client/api/signrequests_api.rb +316 -0
  63. data/lib/signrequest_client/api/team_members_api.rb +151 -0
  64. data/lib/signrequest_client/api/teams_api.rb +371 -0
  65. data/lib/signrequest_client/api/templates_api.rb +133 -0
  66. data/lib/signrequest_client/api/webhooks_api.rb +364 -0
  67. data/lib/signrequest_client/api_client.rb +389 -0
  68. data/lib/signrequest_client/api_error.rb +38 -0
  69. data/lib/signrequest_client/configuration.rb +209 -0
  70. data/lib/signrequest_client/models/auth_token.rb +298 -0
  71. data/lib/signrequest_client/models/document.rb +605 -0
  72. data/lib/signrequest_client/models/document_attachment.rb +304 -0
  73. data/lib/signrequest_client/models/document_search.rb +519 -0
  74. data/lib/signrequest_client/models/document_signer_template_conf.rb +294 -0
  75. data/lib/signrequest_client/models/event.rb +330 -0
  76. data/lib/signrequest_client/models/file_from_sf.rb +245 -0
  77. data/lib/signrequest_client/models/inline_document_signer_integration_data.rb +230 -0
  78. data/lib/signrequest_client/models/inline_integration_data.rb +230 -0
  79. data/lib/signrequest_client/models/inline_prefill_tags.rb +231 -0
  80. data/lib/signrequest_client/models/inline_response_200.rb +227 -0
  81. data/lib/signrequest_client/models/inline_response_200_1.rb +227 -0
  82. data/lib/signrequest_client/models/inline_response_200_2.rb +227 -0
  83. data/lib/signrequest_client/models/inline_response_200_3.rb +227 -0
  84. data/lib/signrequest_client/models/inline_response_200_4.rb +227 -0
  85. data/lib/signrequest_client/models/inline_response_200_5.rb +227 -0
  86. data/lib/signrequest_client/models/inline_response_200_6.rb +227 -0
  87. data/lib/signrequest_client/models/inline_response_200_7.rb +227 -0
  88. data/lib/signrequest_client/models/inline_response_200_8.rb +227 -0
  89. data/lib/signrequest_client/models/inline_response_200_9.rb +227 -0
  90. data/lib/signrequest_client/models/inline_sign_request.rb +496 -0
  91. data/lib/signrequest_client/models/inline_team.rb +247 -0
  92. data/lib/signrequest_client/models/inline_team_member.rb +249 -0
  93. data/lib/signrequest_client/models/invite_member.rb +234 -0
  94. data/lib/signrequest_client/models/placeholder.rb +326 -0
  95. data/lib/signrequest_client/models/required_attachment.rb +246 -0
  96. data/lib/signrequest_client/models/sign_request.rb +543 -0
  97. data/lib/signrequest_client/models/sign_request_quick_create.rb +764 -0
  98. data/lib/signrequest_client/models/signer.rb +751 -0
  99. data/lib/signrequest_client/models/signer_attachment.rb +247 -0
  100. data/lib/signrequest_client/models/signer_inputs.rb +312 -0
  101. data/lib/signrequest_client/models/signing_log.rb +213 -0
  102. data/lib/signrequest_client/models/team.rb +367 -0
  103. data/lib/signrequest_client/models/team_member.rb +258 -0
  104. data/lib/signrequest_client/models/template.rb +309 -0
  105. data/lib/signrequest_client/models/user.rb +296 -0
  106. data/lib/signrequest_client/models/webhook_subscription.rb +366 -0
  107. data/lib/signrequest_client/version.rb +15 -0
  108. data/lib/signrequest_client.rb +87 -0
  109. data/pkg/signrequest_client-0.1.0.gem +0 -0
  110. data/signrequest_client.gemspec +45 -0
  111. data/signrequst_client/.git/HEAD +1 -0
  112. data/signrequst_client/.git/config +7 -0
  113. data/signrequst_client/.git/description +1 -0
  114. data/signrequst_client/.git/hooks/applypatch-msg.sample +15 -0
  115. data/signrequst_client/.git/hooks/commit-msg.sample +24 -0
  116. data/signrequst_client/.git/hooks/fsmonitor-watchman.sample +114 -0
  117. data/signrequst_client/.git/hooks/post-update.sample +8 -0
  118. data/signrequst_client/.git/hooks/pre-applypatch.sample +14 -0
  119. data/signrequst_client/.git/hooks/pre-commit.sample +49 -0
  120. data/signrequst_client/.git/hooks/pre-push.sample +53 -0
  121. data/signrequst_client/.git/hooks/pre-rebase.sample +169 -0
  122. data/signrequst_client/.git/hooks/pre-receive.sample +24 -0
  123. data/signrequst_client/.git/hooks/prepare-commit-msg.sample +42 -0
  124. data/signrequst_client/.git/hooks/update.sample +128 -0
  125. data/signrequst_client/.git/index +0 -0
  126. data/signrequst_client/.git/info/exclude +6 -0
  127. data/signrequst_client/.git/objects/30/68cc8a074ffc0c7b8891cb21d68b5d367cb8c4 +0 -0
  128. data/signrequst_client/.git/objects/32/c4b7e9f988621ed2ce28954f1aaf088f340848 +2 -0
  129. data/signrequst_client/.git/objects/3e/8c4c2f8d1d5334612f3072160124e985f27e8c +0 -0
  130. data/signrequst_client/.git/objects/43/022f711e20ed55baf2470278eb8e428a04856f +0 -0
  131. data/signrequst_client/.git/objects/6f/8caa83dfb6dc8a987a2829cbfefae18c8870c3 +0 -0
  132. data/signrequst_client/.git/objects/91/06b2a345b019a799c02e5069affa88370b35dd +0 -0
  133. data/signrequst_client/.git/objects/aa/58e53f733551ac2bde6f7a50b5a9f16ddbf110 +0 -0
  134. data/signrequst_client/.git/objects/dc/e67d860af47a4eb630117ce03624bae45dcf26 +3 -0
  135. data/signrequst_client/.git/objects/f1/c9171bed4c19fd22429ffd68d4cbb2c3ce2fce +0 -0
  136. data/signrequst_client/.git/objects/f8/e4c2573ebc57d5a365ebe14d5c18cc8d0716c4 +0 -0
  137. data/spec/api/api_tokens_api_spec.rb +84 -0
  138. data/spec/api/document_attachments_api_spec.rb +75 -0
  139. data/spec/api/documents_api_spec.rb +106 -0
  140. data/spec/api/documents_search_api_spec.rb +60 -0
  141. data/spec/api/events_api_spec.rb +73 -0
  142. data/spec/api/signrequest_quick_create_api_spec.rb +47 -0
  143. data/spec/api/signrequests_api_spec.rb +100 -0
  144. data/spec/api/team_members_api_spec.rb +66 -0
  145. data/spec/api/teams_api_spec.rb +111 -0
  146. data/spec/api/templates_api_spec.rb +60 -0
  147. data/spec/api/webhooks_api_spec.rb +110 -0
  148. data/spec/api_client_spec.rb +226 -0
  149. data/spec/configuration_spec.rb +42 -0
  150. data/spec/models/auth_token_spec.rb +72 -0
  151. data/spec/models/document_attachment_spec.rb +84 -0
  152. data/spec/models/document_search_spec.rb +126 -0
  153. data/spec/models/document_signer_template_conf_spec.rb +78 -0
  154. data/spec/models/document_spec.rb +196 -0
  155. data/spec/models/event_spec.rb +104 -0
  156. data/spec/models/file_from_sf_spec.rb +48 -0
  157. data/spec/models/inline_document_signer_integration_data_spec.rb +52 -0
  158. data/spec/models/inline_integration_data_spec.rb +52 -0
  159. data/spec/models/inline_prefill_tags_spec.rb +60 -0
  160. data/spec/models/inline_response_200_1_spec.rb +60 -0
  161. data/spec/models/inline_response_200_2_spec.rb +60 -0
  162. data/spec/models/inline_response_200_3_spec.rb +60 -0
  163. data/spec/models/inline_response_200_4_spec.rb +60 -0
  164. data/spec/models/inline_response_200_5_spec.rb +60 -0
  165. data/spec/models/inline_response_200_6_spec.rb +60 -0
  166. data/spec/models/inline_response_200_7_spec.rb +60 -0
  167. data/spec/models/inline_response_200_8_spec.rb +60 -0
  168. data/spec/models/inline_response_200_9_spec.rb +60 -0
  169. data/spec/models/inline_response_200_spec.rb +60 -0
  170. data/spec/models/inline_sign_request_spec.rb +148 -0
  171. data/spec/models/inline_team_member_spec.rb +72 -0
  172. data/spec/models/inline_team_spec.rb +54 -0
  173. data/spec/models/invite_member_spec.rb +54 -0
  174. data/spec/models/placeholder_spec.rb +88 -0
  175. data/spec/models/required_attachment_spec.rb +48 -0
  176. data/spec/models/sign_request_quick_create_spec.rb +254 -0
  177. data/spec/models/sign_request_spec.rb +176 -0
  178. data/spec/models/signer_attachment_spec.rb +60 -0
  179. data/spec/models/signer_inputs_spec.rb +82 -0
  180. data/spec/models/signer_spec.rb +238 -0
  181. data/spec/models/signing_log_spec.rb +48 -0
  182. data/spec/models/team_member_spec.rb +78 -0
  183. data/spec/models/team_spec.rb +84 -0
  184. data/spec/models/template_spec.rb +82 -0
  185. data/spec/models/user_spec.rb +60 -0
  186. data/spec/models/webhook_subscription_spec.rb +92 -0
  187. data/spec/spec_helper.rb +111 -0
  188. metadata +461 -0
data/docs/EventsApi.md ADDED
@@ -0,0 +1,145 @@
1
+ # SignRequestClient::EventsApi
2
+
3
+ All URIs are relative to *https://signrequest.com/api/v1*
4
+
5
+ Method | HTTP request | Description
6
+ ------------- | ------------- | -------------
7
+ [**events_list**](EventsApi.md#events_list) | **GET** /events/ |
8
+ [**events_read**](EventsApi.md#events_read) | **GET** /events/{id}/ |
9
+
10
+
11
+ # **events_list**
12
+ > InlineResponse2004 events_list(opts)
13
+
14
+
15
+
16
+
17
+
18
+ ### Example
19
+ ```ruby
20
+ # load the gem
21
+ require 'signrequest_client'
22
+ # setup authorization
23
+ SignRequestClient.configure do |config|
24
+ # Configure API key authorization: Token
25
+ config.api_key['Authorization'] = 'YOUR API KEY'
26
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
27
+ #config.api_key_prefix['Authorization'] = 'Bearer'
28
+ end
29
+
30
+ api_instance = SignRequestClient::EventsApi.new
31
+
32
+ opts = {
33
+ document__uuid: "document__uuid_example", # String |
34
+ document__external_id: "document__external_id_example", # String |
35
+ document__signrequest__who: "document__signrequest__who_example", # String |
36
+ document__signrequest__from_email: "document__signrequest__from_email_example", # String |
37
+ document__status: "document__status_example", # String |
38
+ document__user__email: "document__user__email_example", # String |
39
+ document__user__first_name: "document__user__first_name_example", # String |
40
+ document__user__last_name: "document__user__last_name_example", # String |
41
+ delivered: "delivered_example", # String |
42
+ delivered_on: "delivered_on_example", # String |
43
+ timestamp: "timestamp_example", # String |
44
+ status: "status_example", # String |
45
+ event_type: "event_type_example", # String |
46
+ page: 56, # Integer | A page number within the paginated result set.
47
+ limit: 56 # Integer | Number of results to return per page.
48
+ }
49
+
50
+ begin
51
+ result = api_instance.events_list(opts)
52
+ p result
53
+ rescue SignRequestClient::ApiError => e
54
+ puts "Exception when calling EventsApi->events_list: #{e}"
55
+ end
56
+ ```
57
+
58
+ ### Parameters
59
+
60
+ Name | Type | Description | Notes
61
+ ------------- | ------------- | ------------- | -------------
62
+ **document__uuid** | **String**| | [optional]
63
+ **document__external_id** | **String**| | [optional]
64
+ **document__signrequest__who** | **String**| | [optional]
65
+ **document__signrequest__from_email** | **String**| | [optional]
66
+ **document__status** | **String**| | [optional]
67
+ **document__user__email** | **String**| | [optional]
68
+ **document__user__first_name** | **String**| | [optional]
69
+ **document__user__last_name** | **String**| | [optional]
70
+ **delivered** | **String**| | [optional]
71
+ **delivered_on** | **String**| | [optional]
72
+ **timestamp** | **String**| | [optional]
73
+ **status** | **String**| | [optional]
74
+ **event_type** | **String**| | [optional]
75
+ **page** | **Integer**| A page number within the paginated result set. | [optional]
76
+ **limit** | **Integer**| Number of results to return per page. | [optional]
77
+
78
+ ### Return type
79
+
80
+ [**InlineResponse2004**](InlineResponse2004.md)
81
+
82
+ ### Authorization
83
+
84
+ [Token](../README.md#Token)
85
+
86
+ ### HTTP request headers
87
+
88
+ - **Content-Type**: application/json
89
+ - **Accept**: application/json
90
+
91
+
92
+
93
+ # **events_read**
94
+ > Event events_read(id)
95
+
96
+
97
+
98
+
99
+
100
+ ### Example
101
+ ```ruby
102
+ # load the gem
103
+ require 'signrequest_client'
104
+ # setup authorization
105
+ SignRequestClient.configure do |config|
106
+ # Configure API key authorization: Token
107
+ config.api_key['Authorization'] = 'YOUR API KEY'
108
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
109
+ #config.api_key_prefix['Authorization'] = 'Bearer'
110
+ end
111
+
112
+ api_instance = SignRequestClient::EventsApi.new
113
+
114
+ id = 56 # Integer | A unique integer value identifying this event.
115
+
116
+
117
+ begin
118
+ result = api_instance.events_read(id)
119
+ p result
120
+ rescue SignRequestClient::ApiError => e
121
+ puts "Exception when calling EventsApi->events_read: #{e}"
122
+ end
123
+ ```
124
+
125
+ ### Parameters
126
+
127
+ Name | Type | Description | Notes
128
+ ------------- | ------------- | ------------- | -------------
129
+ **id** | **Integer**| A unique integer value identifying this event. |
130
+
131
+ ### Return type
132
+
133
+ [**Event**](Event.md)
134
+
135
+ ### Authorization
136
+
137
+ [Token](../README.md#Token)
138
+
139
+ ### HTTP request headers
140
+
141
+ - **Content-Type**: application/json
142
+ - **Accept**: application/json
143
+
144
+
145
+
@@ -0,0 +1,9 @@
1
+ # SignRequestClient::FileFromSf
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **object_type** | **String** | |
7
+ **object_id** | **String** | |
8
+
9
+
@@ -0,0 +1,9 @@
1
+ # SignRequestClient::InlineDocumentSignerIntegrationData
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **integration** | **String** | | [optional]
7
+ **integration_data** | **String** | | [optional]
8
+
9
+
@@ -0,0 +1,9 @@
1
+ # SignRequestClient::InlineIntegrationData
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **integration** | **String** | | [optional]
7
+ **integration_data** | **String** | | [optional]
8
+
9
+
@@ -0,0 +1,11 @@
1
+ # SignRequestClient::InlinePrefillTags
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **external_id** | **String** | | [optional]
7
+ **text** | **String** | | [optional]
8
+ **checkbox_value** | **BOOLEAN** | | [optional]
9
+ **date_value** | **Date** | | [optional]
10
+
11
+
@@ -0,0 +1,11 @@
1
+ # SignRequestClient::InlineResponse200
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **count** | **Integer** | |
7
+ **_next** | **String** | | [optional]
8
+ **previous** | **String** | | [optional]
9
+ **results** | [**Array<AuthToken>**](AuthToken.md) | |
10
+
11
+
@@ -0,0 +1,11 @@
1
+ # SignRequestClient::InlineResponse2001
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **count** | **Integer** | |
7
+ **_next** | **String** | | [optional]
8
+ **previous** | **String** | | [optional]
9
+ **results** | [**Array<DocumentAttachment>**](DocumentAttachment.md) | |
10
+
11
+
@@ -0,0 +1,11 @@
1
+ # SignRequestClient::InlineResponse2002
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **count** | **Integer** | |
7
+ **_next** | **String** | | [optional]
8
+ **previous** | **String** | | [optional]
9
+ **results** | [**Array<DocumentSearch>**](DocumentSearch.md) | |
10
+
11
+
@@ -0,0 +1,11 @@
1
+ # SignRequestClient::InlineResponse2003
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **count** | **Integer** | |
7
+ **_next** | **String** | | [optional]
8
+ **previous** | **String** | | [optional]
9
+ **results** | [**Array<Document>**](Document.md) | |
10
+
11
+
@@ -0,0 +1,11 @@
1
+ # SignRequestClient::InlineResponse2004
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **count** | **Integer** | |
7
+ **_next** | **String** | | [optional]
8
+ **previous** | **String** | | [optional]
9
+ **results** | [**Array<Event>**](Event.md) | |
10
+
11
+
@@ -0,0 +1,11 @@
1
+ # SignRequestClient::InlineResponse2005
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **count** | **Integer** | |
7
+ **_next** | **String** | | [optional]
8
+ **previous** | **String** | | [optional]
9
+ **results** | [**Array<SignRequest>**](SignRequest.md) | |
10
+
11
+
@@ -0,0 +1,11 @@
1
+ # SignRequestClient::InlineResponse2006
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **count** | **Integer** | |
7
+ **_next** | **String** | | [optional]
8
+ **previous** | **String** | | [optional]
9
+ **results** | [**Array<TeamMember>**](TeamMember.md) | |
10
+
11
+
@@ -0,0 +1,11 @@
1
+ # SignRequestClient::InlineResponse2007
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **count** | **Integer** | |
7
+ **_next** | **String** | | [optional]
8
+ **previous** | **String** | | [optional]
9
+ **results** | [**Array<Team>**](Team.md) | |
10
+
11
+
@@ -0,0 +1,11 @@
1
+ # SignRequestClient::InlineResponse2008
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **count** | **Integer** | |
7
+ **_next** | **String** | | [optional]
8
+ **previous** | **String** | | [optional]
9
+ **results** | [**Array<Template>**](Template.md) | |
10
+
11
+
@@ -0,0 +1,11 @@
1
+ # SignRequestClient::InlineResponse2009
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **count** | **Integer** | |
7
+ **_next** | **String** | | [optional]
8
+ **previous** | **String** | | [optional]
9
+ **results** | [**Array<WebhookSubscription>**](WebhookSubscription.md) | |
10
+
11
+
@@ -0,0 +1,25 @@
1
+ # SignRequestClient::InlineSignRequest
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **from_email** | **String** | |
7
+ **from_email_name** | **String** | | [optional]
8
+ **is_being_prepared** | **BOOLEAN** | | [optional]
9
+ **prepare_url** | **String** | | [optional]
10
+ **redirect_url** | **String** | | [optional]
11
+ **required_attachments** | [**Array<RequiredAttachment>**](RequiredAttachment.md) | | [optional]
12
+ **disable_attachments** | **BOOLEAN** | | [optional]
13
+ **disable_text_signatures** | **BOOLEAN** | | [optional]
14
+ **disable_text** | **BOOLEAN** | | [optional]
15
+ **disable_date** | **BOOLEAN** | | [optional]
16
+ **disable_emails** | **BOOLEAN** | | [optional]
17
+ **disable_upload_signatures** | **BOOLEAN** | | [optional]
18
+ **subject** | **String** | | [optional]
19
+ **message** | **String** | | [optional]
20
+ **who** | **String** | | [optional]
21
+ **send_reminders** | **BOOLEAN** | | [optional]
22
+ **signers** | [**Array<Signer>**](Signer.md) | |
23
+ **uuid** | **String** | | [optional]
24
+
25
+
@@ -0,0 +1,10 @@
1
+ # SignRequestClient::InlineTeam
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **name** | **String** | | [optional]
7
+ **subdomain** | **String** | | [optional]
8
+ **url** | **String** | | [optional]
9
+
10
+
@@ -0,0 +1,13 @@
1
+ # SignRequestClient::InlineTeamMember
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **uuid** | **String** | | [optional]
7
+ **url** | **String** | | [optional]
8
+ **user** | [**User**](User.md) | | [optional]
9
+ **is_admin** | **BOOLEAN** | | [optional]
10
+ **is_active** | **BOOLEAN** | | [optional]
11
+ **is_owner** | **BOOLEAN** | | [optional]
12
+
13
+
@@ -0,0 +1,10 @@
1
+ # SignRequestClient::InviteMember
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **email** | **String** | |
7
+ **is_admin** | **BOOLEAN** | | [optional] [default to false]
8
+ **is_owner** | **BOOLEAN** | | [optional] [default to false]
9
+
10
+
@@ -0,0 +1,15 @@
1
+ # SignRequestClient::Placeholder
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **uuid** | **String** | | [optional]
7
+ **type** | **String** | | [optional]
8
+ **page_index** | **Integer** | |
9
+ **prefill** | **BOOLEAN** | |
10
+ **text** | **String** | | [optional]
11
+ **checkbox_value** | **BOOLEAN** | | [optional]
12
+ **date_value** | **Date** | | [optional]
13
+ **external_id** | **String** | | [optional]
14
+
15
+
@@ -0,0 +1,9 @@
1
+ # SignRequestClient::RequiredAttachment
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **name** | **String** | |
7
+ **uuid** | **String** | | [optional]
8
+
9
+
@@ -0,0 +1,29 @@
1
+ # SignRequestClient::SignRequest
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **from_email** | **String** | | [optional]
7
+ **from_email_name** | **String** | | [optional]
8
+ **is_being_prepared** | **BOOLEAN** | | [optional]
9
+ **prepare_url** | **String** | | [optional]
10
+ **redirect_url** | **String** | | [optional]
11
+ **required_attachments** | [**Array<RequiredAttachment>**](RequiredAttachment.md) | | [optional]
12
+ **disable_attachments** | **BOOLEAN** | | [optional]
13
+ **disable_text_signatures** | **BOOLEAN** | | [optional]
14
+ **disable_text** | **BOOLEAN** | | [optional]
15
+ **disable_date** | **BOOLEAN** | | [optional]
16
+ **disable_emails** | **BOOLEAN** | | [optional]
17
+ **disable_upload_signatures** | **BOOLEAN** | | [optional]
18
+ **subject** | **String** | | [optional]
19
+ **message** | **String** | | [optional]
20
+ **who** | **String** | | [optional] [default to "o"]
21
+ **send_reminders** | **BOOLEAN** | | [optional]
22
+ **signers** | [**Array<Signer>**](Signer.md) | |
23
+ **uuid** | **String** | | [optional]
24
+ **url** | **String** | | [optional]
25
+ **document** | **String** | |
26
+ **integration** | **String** | | [optional]
27
+ **integration_data** | **String** | | [optional]
28
+
29
+
@@ -0,0 +1,42 @@
1
+ # SignRequestClient::SignRequestQuickCreate
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **from_email** | **String** | | [optional]
7
+ **from_email_name** | **String** | | [optional]
8
+ **is_being_prepared** | **BOOLEAN** | | [optional]
9
+ **prepare_url** | **String** | | [optional]
10
+ **redirect_url** | **String** | | [optional]
11
+ **required_attachments** | [**Array<RequiredAttachment>**](RequiredAttachment.md) | | [optional]
12
+ **disable_attachments** | **BOOLEAN** | | [optional]
13
+ **disable_text_signatures** | **BOOLEAN** | | [optional]
14
+ **disable_text** | **BOOLEAN** | | [optional]
15
+ **disable_date** | **BOOLEAN** | | [optional]
16
+ **disable_emails** | **BOOLEAN** | | [optional]
17
+ **disable_upload_signatures** | **BOOLEAN** | | [optional]
18
+ **subject** | **String** | | [optional]
19
+ **message** | **String** | | [optional]
20
+ **who** | **String** | | [optional] [default to "o"]
21
+ **send_reminders** | **BOOLEAN** | | [optional]
22
+ **signers** | [**Array<Signer>**](Signer.md) | |
23
+ **uuid** | **String** | | [optional]
24
+ **url** | **String** | | [optional]
25
+ **document** | **String** | | [optional]
26
+ **integration** | **String** | | [optional]
27
+ **integration_data** | **String** | | [optional]
28
+ **name** | **String** | | [optional]
29
+ **external_id** | **String** | | [optional]
30
+ **frontend_id** | **String** | | [optional]
31
+ **file** | **String** | | [optional]
32
+ **file_from_url** | **String** | | [optional]
33
+ **events_callback_url** | **String** | | [optional]
34
+ **file_from_content** | **String** | | [optional]
35
+ **file_from_content_name** | **String** | | [optional]
36
+ **template** | **String** | | [optional]
37
+ **prefill_tags** | [**Array<InlinePrefillTags>**](InlinePrefillTags.md) | | [optional]
38
+ **integrations** | [**Array<InlineIntegrationData>**](InlineIntegrationData.md) | | [optional]
39
+ **file_from_sf** | [**FileFromSf**](FileFromSf.md) | | [optional]
40
+ **auto_delete_days** | **Integer** | | [optional]
41
+
42
+
data/docs/Signer.md ADDED
@@ -0,0 +1,40 @@
1
+ # SignRequestClient::Signer
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **email** | **String** | |
7
+ **display_name** | **String** | | [optional]
8
+ **first_name** | **String** | | [optional]
9
+ **last_name** | **String** | | [optional]
10
+ **email_viewed** | **BOOLEAN** | | [optional]
11
+ **viewed** | **BOOLEAN** | | [optional]
12
+ **signed** | **BOOLEAN** | | [optional]
13
+ **downloaded** | **BOOLEAN** | | [optional]
14
+ **signed_on** | **DateTime** | | [optional]
15
+ **needs_to_sign** | **BOOLEAN** | | [optional] [default to true]
16
+ **approve_only** | **BOOLEAN** | | [optional]
17
+ **notify_only** | **BOOLEAN** | | [optional]
18
+ **in_person** | **BOOLEAN** | | [optional]
19
+ **order** | **Integer** | | [optional]
20
+ **language** | **String** | | [optional]
21
+ **force_language** | **BOOLEAN** | | [optional]
22
+ **emailed** | **BOOLEAN** | | [optional]
23
+ **verify_phone_number** | **String** | | [optional]
24
+ **verify_bank_account** | **String** | | [optional]
25
+ **declined** | **BOOLEAN** | | [optional]
26
+ **declined_on** | **DateTime** | | [optional]
27
+ **forwarded** | **String** | | [optional]
28
+ **forwarded_on** | **DateTime** | | [optional]
29
+ **forwarded_to_email** | **String** | | [optional]
30
+ **forwarded_reason** | **String** | | [optional]
31
+ **message** | **String** | | [optional]
32
+ **embed_url_user_id** | **String** | | [optional]
33
+ **inputs** | [**Array<SignerInputs>**](SignerInputs.md) | | [optional]
34
+ **embed_url** | **String** | | [optional]
35
+ **attachments** | [**Array<SignerAttachment>**](SignerAttachment.md) | | [optional]
36
+ **redirect_url** | **String** | | [optional]
37
+ **after_document** | **String** | | [optional]
38
+ **integrations** | [**Array<InlineDocumentSignerIntegrationData>**](InlineDocumentSignerIntegrationData.md) | | [optional]
39
+
40
+
@@ -0,0 +1,11 @@
1
+ # SignRequestClient::SignerAttachment
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **uuid** | **String** | | [optional]
7
+ **name** | **String** | | [optional]
8
+ **file** | **String** | | [optional]
9
+ **for_attachment** | [**RequiredAttachment**](RequiredAttachment.md) | | [optional]
10
+
11
+
@@ -0,0 +1,14 @@
1
+ # SignRequestClient::SignerInputs
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **type** | **String** | | [optional]
7
+ **page_index** | **Integer** | |
8
+ **text** | **String** | | [optional]
9
+ **checkbox_value** | **BOOLEAN** | | [optional]
10
+ **date_value** | **Date** | | [optional]
11
+ **external_id** | **String** | | [optional]
12
+ **placeholder_uuid** | **String** | | [optional]
13
+
14
+
@@ -0,0 +1,9 @@
1
+ # SignRequestClient::SigningLog
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **pdf** | **String** | | [optional]
7
+ **security_hash** | **String** | | [optional]
8
+
9
+
@@ -0,0 +1,62 @@
1
+ # SignRequestClient::SignrequestQuickCreateApi
2
+
3
+ All URIs are relative to *https://signrequest.com/api/v1*
4
+
5
+ Method | HTTP request | Description
6
+ ------------- | ------------- | -------------
7
+ [**signrequest_quick_create_create**](SignrequestQuickCreateApi.md#signrequest_quick_create_create) | **POST** /signrequest-quick-create/ |
8
+
9
+
10
+ # **signrequest_quick_create_create**
11
+ > SignRequestQuickCreate signrequest_quick_create_create(data)
12
+
13
+
14
+
15
+
16
+
17
+ ### Example
18
+ ```ruby
19
+ # load the gem
20
+ require 'signrequest_client'
21
+ # setup authorization
22
+ SignRequestClient.configure do |config|
23
+ # Configure API key authorization: Token
24
+ config.api_key['Authorization'] = 'YOUR API KEY'
25
+ # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
26
+ #config.api_key_prefix['Authorization'] = 'Bearer'
27
+ end
28
+
29
+ api_instance = SignRequestClient::SignrequestQuickCreateApi.new
30
+
31
+ data = SignRequestClient::SignRequestQuickCreate.new # SignRequestQuickCreate |
32
+
33
+
34
+ begin
35
+ result = api_instance.signrequest_quick_create_create(data)
36
+ p result
37
+ rescue SignRequestClient::ApiError => e
38
+ puts "Exception when calling SignrequestQuickCreateApi->signrequest_quick_create_create: #{e}"
39
+ end
40
+ ```
41
+
42
+ ### Parameters
43
+
44
+ Name | Type | Description | Notes
45
+ ------------- | ------------- | ------------- | -------------
46
+ **data** | [**SignRequestQuickCreate**](SignRequestQuickCreate.md)| |
47
+
48
+ ### Return type
49
+
50
+ [**SignRequestQuickCreate**](SignRequestQuickCreate.md)
51
+
52
+ ### Authorization
53
+
54
+ [Token](../README.md#Token)
55
+
56
+ ### HTTP request headers
57
+
58
+ - **Content-Type**: application/json
59
+ - **Accept**: application/json
60
+
61
+
62
+