signrequest_client 0.1.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/Gemfile.lock +69 -0
- data/LICENSE +21 -0
- data/README.md +122 -0
- data/Rakefile +9 -0
- data/docs/ApiTokensApi.md +226 -0
- data/docs/AuthToken.md +13 -0
- data/docs/Document.md +33 -0
- data/docs/DocumentAttachment.md +15 -0
- data/docs/DocumentAttachmentsApi.md +179 -0
- data/docs/DocumentSearch.md +22 -0
- data/docs/DocumentSignerTemplateConf.md +14 -0
- data/docs/DocumentsApi.md +301 -0
- data/docs/DocumentsSearchApi.md +119 -0
- data/docs/Event.md +17 -0
- data/docs/EventsApi.md +145 -0
- data/docs/FileFromSf.md +9 -0
- data/docs/InlineDocumentSignerIntegrationData.md +9 -0
- data/docs/InlineIntegrationData.md +9 -0
- data/docs/InlinePrefillTags.md +11 -0
- data/docs/InlineResponse200.md +11 -0
- data/docs/InlineResponse2001.md +11 -0
- data/docs/InlineResponse2002.md +11 -0
- data/docs/InlineResponse2003.md +11 -0
- data/docs/InlineResponse2004.md +11 -0
- data/docs/InlineResponse2005.md +11 -0
- data/docs/InlineResponse2006.md +11 -0
- data/docs/InlineResponse2007.md +11 -0
- data/docs/InlineResponse2008.md +11 -0
- data/docs/InlineResponse2009.md +11 -0
- data/docs/InlineSignRequest.md +25 -0
- data/docs/InlineTeam.md +10 -0
- data/docs/InlineTeamMember.md +13 -0
- data/docs/InviteMember.md +10 -0
- data/docs/Placeholder.md +15 -0
- data/docs/RequiredAttachment.md +9 -0
- data/docs/SignRequest.md +29 -0
- data/docs/SignRequestQuickCreate.md +42 -0
- data/docs/Signer.md +40 -0
- data/docs/SignerAttachment.md +11 -0
- data/docs/SignerInputs.md +14 -0
- data/docs/SigningLog.md +9 -0
- data/docs/SignrequestQuickCreateApi.md +62 -0
- data/docs/SignrequestsApi.md +291 -0
- data/docs/Team.md +15 -0
- data/docs/TeamMember.md +14 -0
- data/docs/TeamMembersApi.md +131 -0
- data/docs/TeamsApi.md +344 -0
- data/docs/Template.md +14 -0
- data/docs/TemplatesApi.md +119 -0
- data/docs/User.md +11 -0
- data/docs/WebhookSubscription.md +15 -0
- data/docs/WebhooksApi.md +340 -0
- data/git_push.sh +55 -0
- data/lib/signrequest_client/api/api_tokens_api.rb +242 -0
- data/lib/signrequest_client/api/document_attachments_api.rb +197 -0
- data/lib/signrequest_client/api/documents_api.rb +330 -0
- data/lib/signrequest_client/api/documents_search_api.rb +133 -0
- data/lib/signrequest_client/api/events_api.rb +172 -0
- data/lib/signrequest_client/api/signrequest_quick_create_api.rb +78 -0
- data/lib/signrequest_client/api/signrequests_api.rb +316 -0
- data/lib/signrequest_client/api/team_members_api.rb +151 -0
- data/lib/signrequest_client/api/teams_api.rb +371 -0
- data/lib/signrequest_client/api/templates_api.rb +133 -0
- data/lib/signrequest_client/api/webhooks_api.rb +364 -0
- data/lib/signrequest_client/api_client.rb +389 -0
- data/lib/signrequest_client/api_error.rb +38 -0
- data/lib/signrequest_client/configuration.rb +209 -0
- data/lib/signrequest_client/models/auth_token.rb +298 -0
- data/lib/signrequest_client/models/document.rb +605 -0
- data/lib/signrequest_client/models/document_attachment.rb +304 -0
- data/lib/signrequest_client/models/document_search.rb +519 -0
- data/lib/signrequest_client/models/document_signer_template_conf.rb +294 -0
- data/lib/signrequest_client/models/event.rb +330 -0
- data/lib/signrequest_client/models/file_from_sf.rb +245 -0
- data/lib/signrequest_client/models/inline_document_signer_integration_data.rb +230 -0
- data/lib/signrequest_client/models/inline_integration_data.rb +230 -0
- data/lib/signrequest_client/models/inline_prefill_tags.rb +231 -0
- data/lib/signrequest_client/models/inline_response_200.rb +227 -0
- data/lib/signrequest_client/models/inline_response_200_1.rb +227 -0
- data/lib/signrequest_client/models/inline_response_200_2.rb +227 -0
- data/lib/signrequest_client/models/inline_response_200_3.rb +227 -0
- data/lib/signrequest_client/models/inline_response_200_4.rb +227 -0
- data/lib/signrequest_client/models/inline_response_200_5.rb +227 -0
- data/lib/signrequest_client/models/inline_response_200_6.rb +227 -0
- data/lib/signrequest_client/models/inline_response_200_7.rb +227 -0
- data/lib/signrequest_client/models/inline_response_200_8.rb +227 -0
- data/lib/signrequest_client/models/inline_response_200_9.rb +227 -0
- data/lib/signrequest_client/models/inline_sign_request.rb +496 -0
- data/lib/signrequest_client/models/inline_team.rb +247 -0
- data/lib/signrequest_client/models/inline_team_member.rb +249 -0
- data/lib/signrequest_client/models/invite_member.rb +234 -0
- data/lib/signrequest_client/models/placeholder.rb +326 -0
- data/lib/signrequest_client/models/required_attachment.rb +246 -0
- data/lib/signrequest_client/models/sign_request.rb +543 -0
- data/lib/signrequest_client/models/sign_request_quick_create.rb +764 -0
- data/lib/signrequest_client/models/signer.rb +751 -0
- data/lib/signrequest_client/models/signer_attachment.rb +247 -0
- data/lib/signrequest_client/models/signer_inputs.rb +312 -0
- data/lib/signrequest_client/models/signing_log.rb +213 -0
- data/lib/signrequest_client/models/team.rb +367 -0
- data/lib/signrequest_client/models/team_member.rb +258 -0
- data/lib/signrequest_client/models/template.rb +309 -0
- data/lib/signrequest_client/models/user.rb +296 -0
- data/lib/signrequest_client/models/webhook_subscription.rb +366 -0
- data/lib/signrequest_client/version.rb +15 -0
- data/lib/signrequest_client.rb +87 -0
- data/pkg/signrequest_client-0.1.0.gem +0 -0
- data/signrequest_client.gemspec +45 -0
- data/signrequst_client/.git/HEAD +1 -0
- data/signrequst_client/.git/config +7 -0
- data/signrequst_client/.git/description +1 -0
- data/signrequst_client/.git/hooks/applypatch-msg.sample +15 -0
- data/signrequst_client/.git/hooks/commit-msg.sample +24 -0
- data/signrequst_client/.git/hooks/fsmonitor-watchman.sample +114 -0
- data/signrequst_client/.git/hooks/post-update.sample +8 -0
- data/signrequst_client/.git/hooks/pre-applypatch.sample +14 -0
- data/signrequst_client/.git/hooks/pre-commit.sample +49 -0
- data/signrequst_client/.git/hooks/pre-push.sample +53 -0
- data/signrequst_client/.git/hooks/pre-rebase.sample +169 -0
- data/signrequst_client/.git/hooks/pre-receive.sample +24 -0
- data/signrequst_client/.git/hooks/prepare-commit-msg.sample +42 -0
- data/signrequst_client/.git/hooks/update.sample +128 -0
- data/signrequst_client/.git/index +0 -0
- data/signrequst_client/.git/info/exclude +6 -0
- data/signrequst_client/.git/objects/30/68cc8a074ffc0c7b8891cb21d68b5d367cb8c4 +0 -0
- data/signrequst_client/.git/objects/32/c4b7e9f988621ed2ce28954f1aaf088f340848 +2 -0
- data/signrequst_client/.git/objects/3e/8c4c2f8d1d5334612f3072160124e985f27e8c +0 -0
- data/signrequst_client/.git/objects/43/022f711e20ed55baf2470278eb8e428a04856f +0 -0
- data/signrequst_client/.git/objects/6f/8caa83dfb6dc8a987a2829cbfefae18c8870c3 +0 -0
- data/signrequst_client/.git/objects/91/06b2a345b019a799c02e5069affa88370b35dd +0 -0
- data/signrequst_client/.git/objects/aa/58e53f733551ac2bde6f7a50b5a9f16ddbf110 +0 -0
- data/signrequst_client/.git/objects/dc/e67d860af47a4eb630117ce03624bae45dcf26 +3 -0
- data/signrequst_client/.git/objects/f1/c9171bed4c19fd22429ffd68d4cbb2c3ce2fce +0 -0
- data/signrequst_client/.git/objects/f8/e4c2573ebc57d5a365ebe14d5c18cc8d0716c4 +0 -0
- data/spec/api/api_tokens_api_spec.rb +84 -0
- data/spec/api/document_attachments_api_spec.rb +75 -0
- data/spec/api/documents_api_spec.rb +106 -0
- data/spec/api/documents_search_api_spec.rb +60 -0
- data/spec/api/events_api_spec.rb +73 -0
- data/spec/api/signrequest_quick_create_api_spec.rb +47 -0
- data/spec/api/signrequests_api_spec.rb +100 -0
- data/spec/api/team_members_api_spec.rb +66 -0
- data/spec/api/teams_api_spec.rb +111 -0
- data/spec/api/templates_api_spec.rb +60 -0
- data/spec/api/webhooks_api_spec.rb +110 -0
- data/spec/api_client_spec.rb +226 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/auth_token_spec.rb +72 -0
- data/spec/models/document_attachment_spec.rb +84 -0
- data/spec/models/document_search_spec.rb +126 -0
- data/spec/models/document_signer_template_conf_spec.rb +78 -0
- data/spec/models/document_spec.rb +196 -0
- data/spec/models/event_spec.rb +104 -0
- data/spec/models/file_from_sf_spec.rb +48 -0
- data/spec/models/inline_document_signer_integration_data_spec.rb +52 -0
- data/spec/models/inline_integration_data_spec.rb +52 -0
- data/spec/models/inline_prefill_tags_spec.rb +60 -0
- data/spec/models/inline_response_200_1_spec.rb +60 -0
- data/spec/models/inline_response_200_2_spec.rb +60 -0
- data/spec/models/inline_response_200_3_spec.rb +60 -0
- data/spec/models/inline_response_200_4_spec.rb +60 -0
- data/spec/models/inline_response_200_5_spec.rb +60 -0
- data/spec/models/inline_response_200_6_spec.rb +60 -0
- data/spec/models/inline_response_200_7_spec.rb +60 -0
- data/spec/models/inline_response_200_8_spec.rb +60 -0
- data/spec/models/inline_response_200_9_spec.rb +60 -0
- data/spec/models/inline_response_200_spec.rb +60 -0
- data/spec/models/inline_sign_request_spec.rb +148 -0
- data/spec/models/inline_team_member_spec.rb +72 -0
- data/spec/models/inline_team_spec.rb +54 -0
- data/spec/models/invite_member_spec.rb +54 -0
- data/spec/models/placeholder_spec.rb +88 -0
- data/spec/models/required_attachment_spec.rb +48 -0
- data/spec/models/sign_request_quick_create_spec.rb +254 -0
- data/spec/models/sign_request_spec.rb +176 -0
- data/spec/models/signer_attachment_spec.rb +60 -0
- data/spec/models/signer_inputs_spec.rb +82 -0
- data/spec/models/signer_spec.rb +238 -0
- data/spec/models/signing_log_spec.rb +48 -0
- data/spec/models/team_member_spec.rb +78 -0
- data/spec/models/team_spec.rb +84 -0
- data/spec/models/template_spec.rb +82 -0
- data/spec/models/user_spec.rb +60 -0
- data/spec/models/webhook_subscription_spec.rb +92 -0
- data/spec/spec_helper.rb +111 -0
- metadata +461 -0
|
@@ -0,0 +1,291 @@
|
|
|
1
|
+
# SignRequestClient::SignrequestsApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *https://signrequest.com/api/v1*
|
|
4
|
+
|
|
5
|
+
Method | HTTP request | Description
|
|
6
|
+
------------- | ------------- | -------------
|
|
7
|
+
[**signrequests_cancel_signrequest**](SignrequestsApi.md#signrequests_cancel_signrequest) | **POST** /signrequests/{uuid}/cancel_signrequest/ |
|
|
8
|
+
[**signrequests_create**](SignrequestsApi.md#signrequests_create) | **POST** /signrequests/ |
|
|
9
|
+
[**signrequests_list**](SignrequestsApi.md#signrequests_list) | **GET** /signrequests/ |
|
|
10
|
+
[**signrequests_read**](SignrequestsApi.md#signrequests_read) | **GET** /signrequests/{uuid}/ |
|
|
11
|
+
[**signrequests_resend_signrequest_email**](SignrequestsApi.md#signrequests_resend_signrequest_email) | **POST** /signrequests/{uuid}/resend_signrequest_email/ |
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# **signrequests_cancel_signrequest**
|
|
15
|
+
> SignRequest signrequests_cancel_signrequest(uuid, data)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Example
|
|
22
|
+
```ruby
|
|
23
|
+
# load the gem
|
|
24
|
+
require 'signrequest_client'
|
|
25
|
+
# setup authorization
|
|
26
|
+
SignRequestClient.configure do |config|
|
|
27
|
+
# Configure API key authorization: Token
|
|
28
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
29
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
30
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
api_instance = SignRequestClient::SignrequestsApi.new
|
|
34
|
+
|
|
35
|
+
uuid = "uuid_example" # String |
|
|
36
|
+
|
|
37
|
+
data = SignRequestClient::SignRequest.new # SignRequest |
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
begin
|
|
41
|
+
result = api_instance.signrequests_cancel_signrequest(uuid, data)
|
|
42
|
+
p result
|
|
43
|
+
rescue SignRequestClient::ApiError => e
|
|
44
|
+
puts "Exception when calling SignrequestsApi->signrequests_cancel_signrequest: #{e}"
|
|
45
|
+
end
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
### Parameters
|
|
49
|
+
|
|
50
|
+
Name | Type | Description | Notes
|
|
51
|
+
------------- | ------------- | ------------- | -------------
|
|
52
|
+
**uuid** | **String**| |
|
|
53
|
+
**data** | [**SignRequest**](SignRequest.md)| |
|
|
54
|
+
|
|
55
|
+
### Return type
|
|
56
|
+
|
|
57
|
+
[**SignRequest**](SignRequest.md)
|
|
58
|
+
|
|
59
|
+
### Authorization
|
|
60
|
+
|
|
61
|
+
[Token](../README.md#Token)
|
|
62
|
+
|
|
63
|
+
### HTTP request headers
|
|
64
|
+
|
|
65
|
+
- **Content-Type**: application/json
|
|
66
|
+
- **Accept**: application/json
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
# **signrequests_create**
|
|
71
|
+
> SignRequest signrequests_create(data)
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
### Example
|
|
78
|
+
```ruby
|
|
79
|
+
# load the gem
|
|
80
|
+
require 'signrequest_client'
|
|
81
|
+
# setup authorization
|
|
82
|
+
SignRequestClient.configure do |config|
|
|
83
|
+
# Configure API key authorization: Token
|
|
84
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
85
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
86
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
api_instance = SignRequestClient::SignrequestsApi.new
|
|
90
|
+
|
|
91
|
+
data = SignRequestClient::SignRequest.new # SignRequest |
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
begin
|
|
95
|
+
result = api_instance.signrequests_create(data)
|
|
96
|
+
p result
|
|
97
|
+
rescue SignRequestClient::ApiError => e
|
|
98
|
+
puts "Exception when calling SignrequestsApi->signrequests_create: #{e}"
|
|
99
|
+
end
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
### Parameters
|
|
103
|
+
|
|
104
|
+
Name | Type | Description | Notes
|
|
105
|
+
------------- | ------------- | ------------- | -------------
|
|
106
|
+
**data** | [**SignRequest**](SignRequest.md)| |
|
|
107
|
+
|
|
108
|
+
### Return type
|
|
109
|
+
|
|
110
|
+
[**SignRequest**](SignRequest.md)
|
|
111
|
+
|
|
112
|
+
### Authorization
|
|
113
|
+
|
|
114
|
+
[Token](../README.md#Token)
|
|
115
|
+
|
|
116
|
+
### HTTP request headers
|
|
117
|
+
|
|
118
|
+
- **Content-Type**: application/json
|
|
119
|
+
- **Accept**: application/json
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
# **signrequests_list**
|
|
124
|
+
> InlineResponse2005 signrequests_list(opts)
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
### Example
|
|
131
|
+
```ruby
|
|
132
|
+
# load the gem
|
|
133
|
+
require 'signrequest_client'
|
|
134
|
+
# setup authorization
|
|
135
|
+
SignRequestClient.configure do |config|
|
|
136
|
+
# Configure API key authorization: Token
|
|
137
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
138
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
139
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
api_instance = SignRequestClient::SignrequestsApi.new
|
|
143
|
+
|
|
144
|
+
opts = {
|
|
145
|
+
who: "who_example", # String |
|
|
146
|
+
from_email: "from_email_example", # String |
|
|
147
|
+
page: 56, # Integer | A page number within the paginated result set.
|
|
148
|
+
limit: 56 # Integer | Number of results to return per page.
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
begin
|
|
152
|
+
result = api_instance.signrequests_list(opts)
|
|
153
|
+
p result
|
|
154
|
+
rescue SignRequestClient::ApiError => e
|
|
155
|
+
puts "Exception when calling SignrequestsApi->signrequests_list: #{e}"
|
|
156
|
+
end
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
### Parameters
|
|
160
|
+
|
|
161
|
+
Name | Type | Description | Notes
|
|
162
|
+
------------- | ------------- | ------------- | -------------
|
|
163
|
+
**who** | **String**| | [optional]
|
|
164
|
+
**from_email** | **String**| | [optional]
|
|
165
|
+
**page** | **Integer**| A page number within the paginated result set. | [optional]
|
|
166
|
+
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
167
|
+
|
|
168
|
+
### Return type
|
|
169
|
+
|
|
170
|
+
[**InlineResponse2005**](InlineResponse2005.md)
|
|
171
|
+
|
|
172
|
+
### Authorization
|
|
173
|
+
|
|
174
|
+
[Token](../README.md#Token)
|
|
175
|
+
|
|
176
|
+
### HTTP request headers
|
|
177
|
+
|
|
178
|
+
- **Content-Type**: application/json
|
|
179
|
+
- **Accept**: application/json
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
# **signrequests_read**
|
|
184
|
+
> SignRequest signrequests_read(uuid)
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
### Example
|
|
191
|
+
```ruby
|
|
192
|
+
# load the gem
|
|
193
|
+
require 'signrequest_client'
|
|
194
|
+
# setup authorization
|
|
195
|
+
SignRequestClient.configure do |config|
|
|
196
|
+
# Configure API key authorization: Token
|
|
197
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
198
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
199
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
|
200
|
+
end
|
|
201
|
+
|
|
202
|
+
api_instance = SignRequestClient::SignrequestsApi.new
|
|
203
|
+
|
|
204
|
+
uuid = "uuid_example" # String |
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
begin
|
|
208
|
+
result = api_instance.signrequests_read(uuid)
|
|
209
|
+
p result
|
|
210
|
+
rescue SignRequestClient::ApiError => e
|
|
211
|
+
puts "Exception when calling SignrequestsApi->signrequests_read: #{e}"
|
|
212
|
+
end
|
|
213
|
+
```
|
|
214
|
+
|
|
215
|
+
### Parameters
|
|
216
|
+
|
|
217
|
+
Name | Type | Description | Notes
|
|
218
|
+
------------- | ------------- | ------------- | -------------
|
|
219
|
+
**uuid** | **String**| |
|
|
220
|
+
|
|
221
|
+
### Return type
|
|
222
|
+
|
|
223
|
+
[**SignRequest**](SignRequest.md)
|
|
224
|
+
|
|
225
|
+
### Authorization
|
|
226
|
+
|
|
227
|
+
[Token](../README.md#Token)
|
|
228
|
+
|
|
229
|
+
### HTTP request headers
|
|
230
|
+
|
|
231
|
+
- **Content-Type**: application/json
|
|
232
|
+
- **Accept**: application/json
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
# **signrequests_resend_signrequest_email**
|
|
237
|
+
> SignRequest signrequests_resend_signrequest_email(uuid, data)
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
### Example
|
|
244
|
+
```ruby
|
|
245
|
+
# load the gem
|
|
246
|
+
require 'signrequest_client'
|
|
247
|
+
# setup authorization
|
|
248
|
+
SignRequestClient.configure do |config|
|
|
249
|
+
# Configure API key authorization: Token
|
|
250
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
251
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
252
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
|
253
|
+
end
|
|
254
|
+
|
|
255
|
+
api_instance = SignRequestClient::SignrequestsApi.new
|
|
256
|
+
|
|
257
|
+
uuid = "uuid_example" # String |
|
|
258
|
+
|
|
259
|
+
data = SignRequestClient::SignRequest.new # SignRequest |
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
begin
|
|
263
|
+
result = api_instance.signrequests_resend_signrequest_email(uuid, data)
|
|
264
|
+
p result
|
|
265
|
+
rescue SignRequestClient::ApiError => e
|
|
266
|
+
puts "Exception when calling SignrequestsApi->signrequests_resend_signrequest_email: #{e}"
|
|
267
|
+
end
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
### Parameters
|
|
271
|
+
|
|
272
|
+
Name | Type | Description | Notes
|
|
273
|
+
------------- | ------------- | ------------- | -------------
|
|
274
|
+
**uuid** | **String**| |
|
|
275
|
+
**data** | [**SignRequest**](SignRequest.md)| |
|
|
276
|
+
|
|
277
|
+
### Return type
|
|
278
|
+
|
|
279
|
+
[**SignRequest**](SignRequest.md)
|
|
280
|
+
|
|
281
|
+
### Authorization
|
|
282
|
+
|
|
283
|
+
[Token](../README.md#Token)
|
|
284
|
+
|
|
285
|
+
### HTTP request headers
|
|
286
|
+
|
|
287
|
+
- **Content-Type**: application/json
|
|
288
|
+
- **Accept**: application/json
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
|
data/docs/Team.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# SignRequestClient::Team
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**name** | **String** | |
|
|
7
|
+
**subdomain** | **String** | |
|
|
8
|
+
**url** | **String** | | [optional]
|
|
9
|
+
**logo** | **String** | | [optional]
|
|
10
|
+
**phone** | **String** | | [optional]
|
|
11
|
+
**primary_color** | **String** | | [optional]
|
|
12
|
+
**events_callback_url** | **String** | | [optional]
|
|
13
|
+
**members** | [**Array<InlineTeamMember>**](InlineTeamMember.md) | | [optional]
|
|
14
|
+
|
|
15
|
+
|
data/docs/TeamMember.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# SignRequestClient::TeamMember
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**uuid** | **String** | | [optional]
|
|
7
|
+
**url** | **String** | | [optional]
|
|
8
|
+
**user** | [**User**](User.md) | | [optional]
|
|
9
|
+
**team** | [**InlineTeam**](InlineTeam.md) | | [optional]
|
|
10
|
+
**is_admin** | **BOOLEAN** | | [optional]
|
|
11
|
+
**is_active** | **BOOLEAN** | | [optional]
|
|
12
|
+
**is_owner** | **BOOLEAN** | | [optional]
|
|
13
|
+
|
|
14
|
+
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
# SignRequestClient::TeamMembersApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *https://signrequest.com/api/v1*
|
|
4
|
+
|
|
5
|
+
Method | HTTP request | Description
|
|
6
|
+
------------- | ------------- | -------------
|
|
7
|
+
[**team_members_list**](TeamMembersApi.md#team_members_list) | **GET** /team-members/ |
|
|
8
|
+
[**team_members_read**](TeamMembersApi.md#team_members_read) | **GET** /team-members/{uuid}/ |
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
# **team_members_list**
|
|
12
|
+
> InlineResponse2006 team_members_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::TeamMembersApi.new
|
|
31
|
+
|
|
32
|
+
opts = {
|
|
33
|
+
is_active: "is_active_example", # String |
|
|
34
|
+
is_owner: "is_owner_example", # String |
|
|
35
|
+
is_admin: "is_admin_example", # String |
|
|
36
|
+
user__email: "user__email_example", # String |
|
|
37
|
+
user__first_name: "user__first_name_example", # String |
|
|
38
|
+
user__last_name: "user__last_name_example", # String |
|
|
39
|
+
page: 56, # Integer | A page number within the paginated result set.
|
|
40
|
+
limit: 56 # Integer | Number of results to return per page.
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
begin
|
|
44
|
+
result = api_instance.team_members_list(opts)
|
|
45
|
+
p result
|
|
46
|
+
rescue SignRequestClient::ApiError => e
|
|
47
|
+
puts "Exception when calling TeamMembersApi->team_members_list: #{e}"
|
|
48
|
+
end
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### Parameters
|
|
52
|
+
|
|
53
|
+
Name | Type | Description | Notes
|
|
54
|
+
------------- | ------------- | ------------- | -------------
|
|
55
|
+
**is_active** | **String**| | [optional]
|
|
56
|
+
**is_owner** | **String**| | [optional]
|
|
57
|
+
**is_admin** | **String**| | [optional]
|
|
58
|
+
**user__email** | **String**| | [optional]
|
|
59
|
+
**user__first_name** | **String**| | [optional]
|
|
60
|
+
**user__last_name** | **String**| | [optional]
|
|
61
|
+
**page** | **Integer**| A page number within the paginated result set. | [optional]
|
|
62
|
+
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
63
|
+
|
|
64
|
+
### Return type
|
|
65
|
+
|
|
66
|
+
[**InlineResponse2006**](InlineResponse2006.md)
|
|
67
|
+
|
|
68
|
+
### Authorization
|
|
69
|
+
|
|
70
|
+
[Token](../README.md#Token)
|
|
71
|
+
|
|
72
|
+
### HTTP request headers
|
|
73
|
+
|
|
74
|
+
- **Content-Type**: application/json
|
|
75
|
+
- **Accept**: application/json
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
# **team_members_read**
|
|
80
|
+
> TeamMember team_members_read(uuid)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
### Example
|
|
87
|
+
```ruby
|
|
88
|
+
# load the gem
|
|
89
|
+
require 'signrequest_client'
|
|
90
|
+
# setup authorization
|
|
91
|
+
SignRequestClient.configure do |config|
|
|
92
|
+
# Configure API key authorization: Token
|
|
93
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
94
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
95
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
api_instance = SignRequestClient::TeamMembersApi.new
|
|
99
|
+
|
|
100
|
+
uuid = "uuid_example" # String |
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
begin
|
|
104
|
+
result = api_instance.team_members_read(uuid)
|
|
105
|
+
p result
|
|
106
|
+
rescue SignRequestClient::ApiError => e
|
|
107
|
+
puts "Exception when calling TeamMembersApi->team_members_read: #{e}"
|
|
108
|
+
end
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
### Parameters
|
|
112
|
+
|
|
113
|
+
Name | Type | Description | Notes
|
|
114
|
+
------------- | ------------- | ------------- | -------------
|
|
115
|
+
**uuid** | **String**| |
|
|
116
|
+
|
|
117
|
+
### Return type
|
|
118
|
+
|
|
119
|
+
[**TeamMember**](TeamMember.md)
|
|
120
|
+
|
|
121
|
+
### Authorization
|
|
122
|
+
|
|
123
|
+
[Token](../README.md#Token)
|
|
124
|
+
|
|
125
|
+
### HTTP request headers
|
|
126
|
+
|
|
127
|
+
- **Content-Type**: application/json
|
|
128
|
+
- **Accept**: application/json
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
|