mailslurp_client 4.3.3 → 5.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 +5 -5
- data/Gemfile.lock +1 -1
- data/README.md +19 -6
- data/docs/CommonOperationsApi.md +337 -4
- data/docs/Email.md +2 -0
- data/docs/EmailPreview.md +4 -0
- data/docs/ExtraOperationsApi.md +173 -7
- data/docs/ForwardEmailOptions.md +11 -0
- data/docs/MatchOption.md +10 -0
- data/docs/MatchOptions.md +8 -0
- data/docs/SendEmailOptions.md +3 -1
- data/docs/UploadAttachmentOptions.md +10 -0
- data/lib/mailslurp_client.rb +4 -0
- data/lib/mailslurp_client/api/common_operations_api.rb +331 -4
- data/lib/mailslurp_client/api/extra_operations_api.rb +183 -8
- data/lib/mailslurp_client/models/email.rb +19 -1
- data/lib/mailslurp_client/models/email_preview.rb +51 -4
- data/lib/mailslurp_client/models/forward_email_options.rb +222 -0
- data/lib/mailslurp_client/models/match_option.rb +250 -0
- data/lib/mailslurp_client/models/match_options.rb +187 -0
- data/lib/mailslurp_client/models/send_email_options.rb +24 -2
- data/lib/mailslurp_client/models/upload_attachment_options.rb +205 -0
- data/lib/mailslurp_client/version.rb +1 -1
- data/spec/api/common_operations_api_spec.rb +24 -0
- data/spec/api/extra_operations_api_spec.rb +1 -1
- data/spec/models/forward_email_options_spec.rb +59 -0
- data/spec/models/match_option_spec.rb +61 -0
- data/spec/models/match_options_spec.rb +41 -0
- data/spec/models/upload_attachment_options_spec.rb +53 -0
- metadata +23 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 6ab644202c77e9ac19da611943b30e7d49f278c27bc3e625d71bff3029657f61
|
4
|
+
data.tar.gz: 54c10683483eda6020cd978e1fc5b8b9824778e2e93f5380ad5605360bd0831f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5ce39607a184f9ed52b3920283ade106a85a2259426c0ba6f0a29ebc7ecf6a10bd49d398a94a2e549121c926dc1dbd49e206d0c6a79ad7aeec22965c6dd462f
|
7
|
+
data.tar.gz: 3068bd2b2b802a3fa0abb52a49b21d252402e9e73fcb21ede6d45e305533034f1fe8a516e58b47803a9322d5491f0823798a493dc82cea93205993b089de7fb0
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -7,7 +7,7 @@ For documentation see [developer guide](https://www.mailslurp.com/developers). [
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
8
8
|
|
9
9
|
- API version: 0.0.1-alpha
|
10
|
-
- Package version:
|
10
|
+
- Package version: 5.0.0
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [https://www.mailslurp.com](https://www.mailslurp.com)
|
13
13
|
|
@@ -24,15 +24,15 @@ gem build mailslurp_client.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./mailslurp_client-
|
27
|
+
gem install ./mailslurp_client-5.0.0.gem
|
28
28
|
```
|
29
|
-
(for development, run `gem install --dev ./mailslurp_client-
|
29
|
+
(for development, run `gem install --dev ./mailslurp_client-5.0.0.gem` to install the development dependencies)
|
30
30
|
|
31
31
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
32
32
|
|
33
33
|
Finally add this to the Gemfile:
|
34
34
|
|
35
|
-
gem 'mailslurp_client', '~>
|
35
|
+
gem 'mailslurp_client', '~> 5.0.0'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
@@ -82,17 +82,24 @@ All URIs are relative to *https://api.mailslurp.com*
|
|
82
82
|
Class | Method | HTTP request | Description
|
83
83
|
------------ | ------------- | ------------- | -------------
|
84
84
|
*MailSlurpClient::CommonOperationsApi* | [**create_new_email_address**](docs/CommonOperationsApi.md#create_new_email_address) | **POST** /newEmailAddress | Create new email address
|
85
|
+
*MailSlurpClient::CommonOperationsApi* | [**delete_email**](docs/CommonOperationsApi.md#delete_email) | **DELETE** /deleteEmail | Delete an email
|
86
|
+
*MailSlurpClient::CommonOperationsApi* | [**delete_email_address**](docs/CommonOperationsApi.md#delete_email_address) | **DELETE** /deleteEmailAddress | Delete email address and its emails
|
87
|
+
*MailSlurpClient::CommonOperationsApi* | [**empty_inbox**](docs/CommonOperationsApi.md#empty_inbox) | **DELETE** /emptyInbox | Delete all emails in an inbox
|
85
88
|
*MailSlurpClient::CommonOperationsApi* | [**send_email_simple**](docs/CommonOperationsApi.md#send_email_simple) | **POST** /sendEmail | Send an email from a random email address
|
86
|
-
*MailSlurpClient::CommonOperationsApi* | [**
|
89
|
+
*MailSlurpClient::CommonOperationsApi* | [**wait_for_email_count**](docs/CommonOperationsApi.md#wait_for_email_count) | **GET** /waitForEmailCount | Wait for and return count number of emails
|
90
|
+
*MailSlurpClient::CommonOperationsApi* | [**wait_for_latest_email**](docs/CommonOperationsApi.md#wait_for_latest_email) | **GET** /waitForLatestEmail | Fetch inbox's latest email or if empty wait for email to arrive
|
91
|
+
*MailSlurpClient::CommonOperationsApi* | [**wait_for_matching_email**](docs/CommonOperationsApi.md#wait_for_matching_email) | **POST** /waitForMatchingEmails | Wait or return list of emails that match simple matching patterns
|
92
|
+
*MailSlurpClient::CommonOperationsApi* | [**wait_for_nth_email**](docs/CommonOperationsApi.md#wait_for_nth_email) | **GET** /waitForNthEmail | Wait for or fetch the email with a given index in the inbox specified
|
87
93
|
*MailSlurpClient::ExtraOperationsApi* | [**bulk_create_inboxes**](docs/ExtraOperationsApi.md#bulk_create_inboxes) | **POST** /bulk/inboxes | Bulk create Inboxes (email addresses)
|
88
94
|
*MailSlurpClient::ExtraOperationsApi* | [**bulk_delete_inboxes**](docs/ExtraOperationsApi.md#bulk_delete_inboxes) | **DELETE** /bulk/inboxes | Bulk Delete Inboxes
|
89
95
|
*MailSlurpClient::ExtraOperationsApi* | [**bulk_send_emails**](docs/ExtraOperationsApi.md#bulk_send_emails) | **POST** /bulk/send | Bulk Send Emails
|
90
96
|
*MailSlurpClient::ExtraOperationsApi* | [**create_inbox**](docs/ExtraOperationsApi.md#create_inbox) | **POST** /inboxes | Create an Inbox (email address)
|
91
97
|
*MailSlurpClient::ExtraOperationsApi* | [**create_webhook**](docs/ExtraOperationsApi.md#create_webhook) | **POST** /inboxes/{inboxId}/webhooks | Attach a WebHook URL to an inbox
|
92
|
-
*MailSlurpClient::ExtraOperationsApi* | [**
|
98
|
+
*MailSlurpClient::ExtraOperationsApi* | [**delete_email1**](docs/ExtraOperationsApi.md#delete_email1) | **DELETE** /emails/{emailId} | Delete Email
|
93
99
|
*MailSlurpClient::ExtraOperationsApi* | [**delete_inbox**](docs/ExtraOperationsApi.md#delete_inbox) | **DELETE** /inboxes/{inboxId} | Delete Inbox / Email Address
|
94
100
|
*MailSlurpClient::ExtraOperationsApi* | [**delete_webhook**](docs/ExtraOperationsApi.md#delete_webhook) | **DELETE** /inboxes/{inboxId}/webhooks/{webhookId} | Delete and disable a WebHook for an Inbox
|
95
101
|
*MailSlurpClient::ExtraOperationsApi* | [**download_attachment**](docs/ExtraOperationsApi.md#download_attachment) | **GET** /emails/{emailId}/attachments/{attachmentId} | Get email attachment
|
102
|
+
*MailSlurpClient::ExtraOperationsApi* | [**forward_email**](docs/ExtraOperationsApi.md#forward_email) | **POST** /emails/{emailId}/forward | Forward Email
|
96
103
|
*MailSlurpClient::ExtraOperationsApi* | [**get_email**](docs/ExtraOperationsApi.md#get_email) | **GET** /emails/{emailId} | Get Email Content
|
97
104
|
*MailSlurpClient::ExtraOperationsApi* | [**get_emails**](docs/ExtraOperationsApi.md#get_emails) | **GET** /inboxes/{inboxId}/emails | List Emails in an Inbox / EmailAddress
|
98
105
|
*MailSlurpClient::ExtraOperationsApi* | [**get_inbox**](docs/ExtraOperationsApi.md#get_inbox) | **GET** /inboxes/{inboxId} | Get Inbox / EmailAddress
|
@@ -100,6 +107,8 @@ Class | Method | HTTP request | Description
|
|
100
107
|
*MailSlurpClient::ExtraOperationsApi* | [**get_raw_email_contents**](docs/ExtraOperationsApi.md#get_raw_email_contents) | **GET** /emails/{emailId}/raw | Get Raw Email Content
|
101
108
|
*MailSlurpClient::ExtraOperationsApi* | [**get_webhooks**](docs/ExtraOperationsApi.md#get_webhooks) | **GET** /inboxes/{inboxId}/webhooks | Get all WebHooks for an Inbox
|
102
109
|
*MailSlurpClient::ExtraOperationsApi* | [**send_email**](docs/ExtraOperationsApi.md#send_email) | **POST** /inboxes/{inboxId} | Send Email
|
110
|
+
*MailSlurpClient::ExtraOperationsApi* | [**upload_attachment**](docs/ExtraOperationsApi.md#upload_attachment) | **POST** /attachments | Upload an attachment for sending
|
111
|
+
*MailSlurpClient::ExtraOperationsApi* | [**upload_multipart_form**](docs/ExtraOperationsApi.md#upload_multipart_form) | **POST** /attachments/multipart | Upload an attachment for sending using Multipart Form
|
103
112
|
|
104
113
|
|
105
114
|
## Documentation for Models
|
@@ -110,8 +119,12 @@ Class | Method | HTTP request | Description
|
|
110
119
|
- [MailSlurpClient::Email](docs/Email.md)
|
111
120
|
- [MailSlurpClient::EmailAnalysis](docs/EmailAnalysis.md)
|
112
121
|
- [MailSlurpClient::EmailPreview](docs/EmailPreview.md)
|
122
|
+
- [MailSlurpClient::ForwardEmailOptions](docs/ForwardEmailOptions.md)
|
113
123
|
- [MailSlurpClient::Inbox](docs/Inbox.md)
|
124
|
+
- [MailSlurpClient::MatchOption](docs/MatchOption.md)
|
125
|
+
- [MailSlurpClient::MatchOptions](docs/MatchOptions.md)
|
114
126
|
- [MailSlurpClient::SendEmailOptions](docs/SendEmailOptions.md)
|
127
|
+
- [MailSlurpClient::UploadAttachmentOptions](docs/UploadAttachmentOptions.md)
|
115
128
|
- [MailSlurpClient::Webhook](docs/Webhook.md)
|
116
129
|
|
117
130
|
|
data/docs/CommonOperationsApi.md
CHANGED
@@ -5,8 +5,14 @@ All URIs are relative to *https://api.mailslurp.com*
|
|
5
5
|
Method | HTTP request | Description
|
6
6
|
------------- | ------------- | -------------
|
7
7
|
[**create_new_email_address**](CommonOperationsApi.md#create_new_email_address) | **POST** /newEmailAddress | Create new email address
|
8
|
+
[**delete_email**](CommonOperationsApi.md#delete_email) | **DELETE** /deleteEmail | Delete an email
|
9
|
+
[**delete_email_address**](CommonOperationsApi.md#delete_email_address) | **DELETE** /deleteEmailAddress | Delete email address and its emails
|
10
|
+
[**empty_inbox**](CommonOperationsApi.md#empty_inbox) | **DELETE** /emptyInbox | Delete all emails in an inbox
|
8
11
|
[**send_email_simple**](CommonOperationsApi.md#send_email_simple) | **POST** /sendEmail | Send an email from a random email address
|
9
|
-
[**
|
12
|
+
[**wait_for_email_count**](CommonOperationsApi.md#wait_for_email_count) | **GET** /waitForEmailCount | Wait for and return count number of emails
|
13
|
+
[**wait_for_latest_email**](CommonOperationsApi.md#wait_for_latest_email) | **GET** /waitForLatestEmail | Fetch inbox's latest email or if empty wait for email to arrive
|
14
|
+
[**wait_for_matching_email**](CommonOperationsApi.md#wait_for_matching_email) | **POST** /waitForMatchingEmails | Wait or return list of emails that match simple matching patterns
|
15
|
+
[**wait_for_nth_email**](CommonOperationsApi.md#wait_for_nth_email) | **GET** /waitForNthEmail | Wait for or fetch the email with a given index in the inbox specified
|
10
16
|
|
11
17
|
|
12
18
|
# **create_new_email_address**
|
@@ -57,6 +63,159 @@ This endpoint does not need any parameter.
|
|
57
63
|
|
58
64
|
|
59
65
|
|
66
|
+
# **delete_email**
|
67
|
+
> delete_email(email_id)
|
68
|
+
|
69
|
+
Delete an email
|
70
|
+
|
71
|
+
Deletes an email
|
72
|
+
|
73
|
+
### Example
|
74
|
+
```ruby
|
75
|
+
# load the gem
|
76
|
+
require 'mailslurp_client'
|
77
|
+
# setup authorization
|
78
|
+
MailSlurpClient.configure do |config|
|
79
|
+
# Configure API key authorization: API_KEY
|
80
|
+
config.api_key['x-api-key'] = 'YOUR API KEY'
|
81
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
82
|
+
#config.api_key_prefix['x-api-key'] = 'Bearer'
|
83
|
+
end
|
84
|
+
|
85
|
+
api_instance = MailSlurpClient::CommonOperationsApi.new
|
86
|
+
email_id = 'email_id_example' # String | emailId
|
87
|
+
|
88
|
+
begin
|
89
|
+
#Delete an email
|
90
|
+
api_instance.delete_email(email_id)
|
91
|
+
rescue MailSlurpClient::ApiError => e
|
92
|
+
puts "Exception when calling CommonOperationsApi->delete_email: #{e}"
|
93
|
+
end
|
94
|
+
```
|
95
|
+
|
96
|
+
### Parameters
|
97
|
+
|
98
|
+
Name | Type | Description | Notes
|
99
|
+
------------- | ------------- | ------------- | -------------
|
100
|
+
**email_id** | [**String**](.md)| emailId |
|
101
|
+
|
102
|
+
### Return type
|
103
|
+
|
104
|
+
nil (empty response body)
|
105
|
+
|
106
|
+
### Authorization
|
107
|
+
|
108
|
+
[API_KEY](../README.md#API_KEY)
|
109
|
+
|
110
|
+
### HTTP request headers
|
111
|
+
|
112
|
+
- **Content-Type**: Not defined
|
113
|
+
- **Accept**: Not defined
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
# **delete_email_address**
|
118
|
+
> delete_email_address(inbox_id)
|
119
|
+
|
120
|
+
Delete email address and its emails
|
121
|
+
|
122
|
+
Deletes an inbox
|
123
|
+
|
124
|
+
### Example
|
125
|
+
```ruby
|
126
|
+
# load the gem
|
127
|
+
require 'mailslurp_client'
|
128
|
+
# setup authorization
|
129
|
+
MailSlurpClient.configure do |config|
|
130
|
+
# Configure API key authorization: API_KEY
|
131
|
+
config.api_key['x-api-key'] = 'YOUR API KEY'
|
132
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
133
|
+
#config.api_key_prefix['x-api-key'] = 'Bearer'
|
134
|
+
end
|
135
|
+
|
136
|
+
api_instance = MailSlurpClient::CommonOperationsApi.new
|
137
|
+
inbox_id = 'inbox_id_example' # String | inboxId
|
138
|
+
|
139
|
+
begin
|
140
|
+
#Delete email address and its emails
|
141
|
+
api_instance.delete_email_address(inbox_id)
|
142
|
+
rescue MailSlurpClient::ApiError => e
|
143
|
+
puts "Exception when calling CommonOperationsApi->delete_email_address: #{e}"
|
144
|
+
end
|
145
|
+
```
|
146
|
+
|
147
|
+
### Parameters
|
148
|
+
|
149
|
+
Name | Type | Description | Notes
|
150
|
+
------------- | ------------- | ------------- | -------------
|
151
|
+
**inbox_id** | [**String**](.md)| inboxId |
|
152
|
+
|
153
|
+
### Return type
|
154
|
+
|
155
|
+
nil (empty response body)
|
156
|
+
|
157
|
+
### Authorization
|
158
|
+
|
159
|
+
[API_KEY](../README.md#API_KEY)
|
160
|
+
|
161
|
+
### HTTP request headers
|
162
|
+
|
163
|
+
- **Content-Type**: Not defined
|
164
|
+
- **Accept**: Not defined
|
165
|
+
|
166
|
+
|
167
|
+
|
168
|
+
# **empty_inbox**
|
169
|
+
> empty_inbox(inbox_id)
|
170
|
+
|
171
|
+
Delete all emails in an inbox
|
172
|
+
|
173
|
+
Deletes all emails
|
174
|
+
|
175
|
+
### Example
|
176
|
+
```ruby
|
177
|
+
# load the gem
|
178
|
+
require 'mailslurp_client'
|
179
|
+
# setup authorization
|
180
|
+
MailSlurpClient.configure do |config|
|
181
|
+
# Configure API key authorization: API_KEY
|
182
|
+
config.api_key['x-api-key'] = 'YOUR API KEY'
|
183
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
184
|
+
#config.api_key_prefix['x-api-key'] = 'Bearer'
|
185
|
+
end
|
186
|
+
|
187
|
+
api_instance = MailSlurpClient::CommonOperationsApi.new
|
188
|
+
inbox_id = 'inbox_id_example' # String | inboxId
|
189
|
+
|
190
|
+
begin
|
191
|
+
#Delete all emails in an inbox
|
192
|
+
api_instance.empty_inbox(inbox_id)
|
193
|
+
rescue MailSlurpClient::ApiError => e
|
194
|
+
puts "Exception when calling CommonOperationsApi->empty_inbox: #{e}"
|
195
|
+
end
|
196
|
+
```
|
197
|
+
|
198
|
+
### Parameters
|
199
|
+
|
200
|
+
Name | Type | Description | Notes
|
201
|
+
------------- | ------------- | ------------- | -------------
|
202
|
+
**inbox_id** | [**String**](.md)| inboxId |
|
203
|
+
|
204
|
+
### Return type
|
205
|
+
|
206
|
+
nil (empty response body)
|
207
|
+
|
208
|
+
### Authorization
|
209
|
+
|
210
|
+
[API_KEY](../README.md#API_KEY)
|
211
|
+
|
212
|
+
### HTTP request headers
|
213
|
+
|
214
|
+
- **Content-Type**: Not defined
|
215
|
+
- **Accept**: Not defined
|
216
|
+
|
217
|
+
|
218
|
+
|
60
219
|
# **send_email_simple**
|
61
220
|
> send_email_simple(send_email_options)
|
62
221
|
|
@@ -108,6 +267,64 @@ nil (empty response body)
|
|
108
267
|
|
109
268
|
|
110
269
|
|
270
|
+
# **wait_for_email_count**
|
271
|
+
> Array<EmailPreview> wait_for_email_count(opts)
|
272
|
+
|
273
|
+
Wait for and return count number of emails
|
274
|
+
|
275
|
+
Will only wait if count is greater that the found emails in given inbox.If you need to wait for an email for a non-empty inbox see the other receive methods.
|
276
|
+
|
277
|
+
### Example
|
278
|
+
```ruby
|
279
|
+
# load the gem
|
280
|
+
require 'mailslurp_client'
|
281
|
+
# setup authorization
|
282
|
+
MailSlurpClient.configure do |config|
|
283
|
+
# Configure API key authorization: API_KEY
|
284
|
+
config.api_key['x-api-key'] = 'YOUR API KEY'
|
285
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
286
|
+
#config.api_key_prefix['x-api-key'] = 'Bearer'
|
287
|
+
end
|
288
|
+
|
289
|
+
api_instance = MailSlurpClient::CommonOperationsApi.new
|
290
|
+
opts = {
|
291
|
+
count: 56, # Integer | Number of emails to wait for. Must be greater that 1
|
292
|
+
inbox_id: 'inbox_id_example', # String | Id of the inbox we are fetching emails from
|
293
|
+
timeout: 56 # Integer | Max milliseconds to wait
|
294
|
+
}
|
295
|
+
|
296
|
+
begin
|
297
|
+
#Wait for and return count number of emails
|
298
|
+
result = api_instance.wait_for_email_count(opts)
|
299
|
+
p result
|
300
|
+
rescue MailSlurpClient::ApiError => e
|
301
|
+
puts "Exception when calling CommonOperationsApi->wait_for_email_count: #{e}"
|
302
|
+
end
|
303
|
+
```
|
304
|
+
|
305
|
+
### Parameters
|
306
|
+
|
307
|
+
Name | Type | Description | Notes
|
308
|
+
------------- | ------------- | ------------- | -------------
|
309
|
+
**count** | **Integer**| Number of emails to wait for. Must be greater that 1 | [optional]
|
310
|
+
**inbox_id** | [**String**](.md)| Id of the inbox we are fetching emails from | [optional]
|
311
|
+
**timeout** | **Integer**| Max milliseconds to wait | [optional]
|
312
|
+
|
313
|
+
### Return type
|
314
|
+
|
315
|
+
[**Array<EmailPreview>**](EmailPreview.md)
|
316
|
+
|
317
|
+
### Authorization
|
318
|
+
|
319
|
+
[API_KEY](../README.md#API_KEY)
|
320
|
+
|
321
|
+
### HTTP request headers
|
322
|
+
|
323
|
+
- **Content-Type**: Not defined
|
324
|
+
- **Accept**: application/json
|
325
|
+
|
326
|
+
|
327
|
+
|
111
328
|
# **wait_for_latest_email**
|
112
329
|
> Email wait_for_latest_email(opts)
|
113
330
|
|
@@ -129,8 +346,8 @@ end
|
|
129
346
|
|
130
347
|
api_instance = MailSlurpClient::CommonOperationsApi.new
|
131
348
|
opts = {
|
132
|
-
|
133
|
-
|
349
|
+
inbox_id: 'inbox_id_example', # String | Id of the inbox we are fetching emails from
|
350
|
+
timeout: 56 # Integer | Max milliseconds to wait
|
134
351
|
}
|
135
352
|
|
136
353
|
begin
|
@@ -146,8 +363,124 @@ end
|
|
146
363
|
|
147
364
|
Name | Type | Description | Notes
|
148
365
|
------------- | ------------- | ------------- | -------------
|
149
|
-
**inbox_email_address** | **String**| Email address of the inbox we are fetching emails from | [optional]
|
150
366
|
**inbox_id** | [**String**](.md)| Id of the inbox we are fetching emails from | [optional]
|
367
|
+
**timeout** | **Integer**| Max milliseconds to wait | [optional]
|
368
|
+
|
369
|
+
### Return type
|
370
|
+
|
371
|
+
[**Email**](Email.md)
|
372
|
+
|
373
|
+
### Authorization
|
374
|
+
|
375
|
+
[API_KEY](../README.md#API_KEY)
|
376
|
+
|
377
|
+
### HTTP request headers
|
378
|
+
|
379
|
+
- **Content-Type**: Not defined
|
380
|
+
- **Accept**: application/json
|
381
|
+
|
382
|
+
|
383
|
+
|
384
|
+
# **wait_for_matching_email**
|
385
|
+
> Array<EmailPreview> wait_for_matching_email(match_options, opts)
|
386
|
+
|
387
|
+
Wait or return list of emails that match simple matching patterns
|
388
|
+
|
389
|
+
Results must also meet provided count. Match options allow simple CONTAINS or EQUALS filtering on SUBJECT, TO, BCC, CC, and FROM.
|
390
|
+
|
391
|
+
### Example
|
392
|
+
```ruby
|
393
|
+
# load the gem
|
394
|
+
require 'mailslurp_client'
|
395
|
+
# setup authorization
|
396
|
+
MailSlurpClient.configure do |config|
|
397
|
+
# Configure API key authorization: API_KEY
|
398
|
+
config.api_key['x-api-key'] = 'YOUR API KEY'
|
399
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
400
|
+
#config.api_key_prefix['x-api-key'] = 'Bearer'
|
401
|
+
end
|
402
|
+
|
403
|
+
api_instance = MailSlurpClient::CommonOperationsApi.new
|
404
|
+
match_options = MailSlurpClient::MatchOptions.new # MatchOptions | matchOptions
|
405
|
+
opts = {
|
406
|
+
count: 56, # Integer | Number of emails to wait for. Must be greater that 1
|
407
|
+
inbox_id: 'inbox_id_example', # String | Id of the inbox we are fetching emails from
|
408
|
+
timeout: 56 # Integer | Max milliseconds to wait
|
409
|
+
}
|
410
|
+
|
411
|
+
begin
|
412
|
+
#Wait or return list of emails that match simple matching patterns
|
413
|
+
result = api_instance.wait_for_matching_email(match_options, opts)
|
414
|
+
p result
|
415
|
+
rescue MailSlurpClient::ApiError => e
|
416
|
+
puts "Exception when calling CommonOperationsApi->wait_for_matching_email: #{e}"
|
417
|
+
end
|
418
|
+
```
|
419
|
+
|
420
|
+
### Parameters
|
421
|
+
|
422
|
+
Name | Type | Description | Notes
|
423
|
+
------------- | ------------- | ------------- | -------------
|
424
|
+
**match_options** | [**MatchOptions**](MatchOptions.md)| matchOptions |
|
425
|
+
**count** | **Integer**| Number of emails to wait for. Must be greater that 1 | [optional]
|
426
|
+
**inbox_id** | [**String**](.md)| Id of the inbox we are fetching emails from | [optional]
|
427
|
+
**timeout** | **Integer**| Max milliseconds to wait | [optional]
|
428
|
+
|
429
|
+
### Return type
|
430
|
+
|
431
|
+
[**Array<EmailPreview>**](EmailPreview.md)
|
432
|
+
|
433
|
+
### Authorization
|
434
|
+
|
435
|
+
[API_KEY](../README.md#API_KEY)
|
436
|
+
|
437
|
+
### HTTP request headers
|
438
|
+
|
439
|
+
- **Content-Type**: application/json
|
440
|
+
- **Accept**: application/json
|
441
|
+
|
442
|
+
|
443
|
+
|
444
|
+
# **wait_for_nth_email**
|
445
|
+
> Email wait_for_nth_email(opts)
|
446
|
+
|
447
|
+
Wait for or fetch the email with a given index in the inbox specified
|
448
|
+
|
449
|
+
### Example
|
450
|
+
```ruby
|
451
|
+
# load the gem
|
452
|
+
require 'mailslurp_client'
|
453
|
+
# setup authorization
|
454
|
+
MailSlurpClient.configure do |config|
|
455
|
+
# Configure API key authorization: API_KEY
|
456
|
+
config.api_key['x-api-key'] = 'YOUR API KEY'
|
457
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
458
|
+
#config.api_key_prefix['x-api-key'] = 'Bearer'
|
459
|
+
end
|
460
|
+
|
461
|
+
api_instance = MailSlurpClient::CommonOperationsApi.new
|
462
|
+
opts = {
|
463
|
+
inbox_id: 'inbox_id_example', # String | Id of the inbox we are fetching emails from
|
464
|
+
index: 56, # Integer | Zero based index of the email to wait for
|
465
|
+
timeout: 56 # Integer | Max milliseconds to wait
|
466
|
+
}
|
467
|
+
|
468
|
+
begin
|
469
|
+
#Wait for or fetch the email with a given index in the inbox specified
|
470
|
+
result = api_instance.wait_for_nth_email(opts)
|
471
|
+
p result
|
472
|
+
rescue MailSlurpClient::ApiError => e
|
473
|
+
puts "Exception when calling CommonOperationsApi->wait_for_nth_email: #{e}"
|
474
|
+
end
|
475
|
+
```
|
476
|
+
|
477
|
+
### Parameters
|
478
|
+
|
479
|
+
Name | Type | Description | Notes
|
480
|
+
------------- | ------------- | ------------- | -------------
|
481
|
+
**inbox_id** | [**String**](.md)| Id of the inbox we are fetching emails from | [optional]
|
482
|
+
**index** | **Integer**| Zero based index of the email to wait for | [optional]
|
483
|
+
**timeout** | **Integer**| Max milliseconds to wait | [optional]
|
151
484
|
|
152
485
|
### Return type
|
153
486
|
|