mailslurp_client 5.0.0 → 7.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -0
- data/README.md +127 -40
- data/docs/AttachmentControllerApi.md +124 -0
- data/docs/AttachmentMetaData.md +23 -0
- data/docs/BasicAuthOptions.md +10 -0
- data/docs/BulkActionsControllerApi.md +165 -0
- data/docs/BulkSendEmailOptions.md +11 -1
- data/docs/CommonActionsControllerApi.md +167 -0
- data/docs/ContactControllerApi.md +274 -0
- data/docs/ContactDto.md +31 -0
- data/docs/ContactProjection.md +27 -0
- data/docs/CreateContactOptions.md +31 -0
- data/docs/CreateDomainOptions.md +17 -0
- data/docs/CreateGroupOptions.md +19 -0
- data/docs/CreateTemplateOptions.md +19 -0
- data/docs/CreateWebhookOptions.md +13 -2
- data/docs/DomainControllerApi.md +223 -0
- data/docs/DomainDto.md +29 -0
- data/docs/DomainPreview.md +21 -0
- data/docs/Email.md +40 -15
- data/docs/EmailAnalysis.md +18 -5
- data/docs/EmailControllerApi.md +740 -0
- data/docs/EmailPreview.md +24 -6
- data/docs/EmailProjection.md +33 -0
- data/docs/ForwardEmailOptions.md +12 -0
- data/docs/GroupContactsDto.md +19 -0
- data/docs/GroupControllerApi.md +437 -0
- data/docs/GroupDto.md +23 -0
- data/docs/GroupProjection.md +23 -0
- data/docs/HTMLValidationResult.md +21 -0
- data/docs/Inbox.md +26 -4
- data/docs/InboxControllerApi.md +652 -0
- data/docs/InboxProjection.md +29 -0
- data/docs/JsonNode.md +59 -0
- data/docs/MatchOption.md +13 -2
- data/docs/MatchOptions.md +9 -0
- data/docs/PageContactProjection.md +37 -0
- data/docs/PageEmailPreview.md +37 -0
- data/docs/PageEmailProjection.md +37 -0
- data/docs/PageGroupProjection.md +37 -0
- data/docs/PageInboxProjection.md +37 -0
- data/docs/PageTemplateProjection.md +37 -0
- data/docs/PageWebhookProjection.md +37 -0
- data/docs/Pageable.md +27 -0
- data/docs/RawEmailJson.md +17 -0
- data/docs/SendEmailOptions.md +33 -6
- data/docs/SetInboxFavouritedOptions.md +17 -0
- data/docs/Sort.md +21 -0
- data/docs/TemplateControllerApi.md +274 -0
- data/docs/TemplateDto.md +25 -0
- data/docs/TemplateProjection.md +25 -0
- data/docs/TemplateVariable.md +19 -0
- data/docs/UnreadCount.md +17 -0
- data/docs/UpdateGroupContacts.md +17 -0
- data/docs/UpdateInboxOptions.md +25 -0
- data/docs/UploadAttachmentOptions.md +12 -1
- data/docs/ValidationDto.md +19 -0
- data/docs/ValidationMessage.md +19 -0
- data/docs/WaitForConditions.md +29 -0
- data/docs/WaitForControllerApi.md +317 -0
- data/docs/WebhookControllerApi.md +339 -0
- data/docs/WebhookDto.md +33 -0
- data/docs/WebhookProjection.md +27 -0
- data/docs/WebhookTestRequest.md +23 -0
- data/docs/WebhookTestResponse.md +19 -0
- data/docs/WebhookTestResult.md +21 -0
- data/git_push.sh +10 -7
- data/lib/mailslurp_client.rb +56 -7
- data/lib/mailslurp_client/api/attachment_controller_api.rb +157 -0
- data/lib/mailslurp_client/api/bulk_actions_controller_api.rb +203 -0
- data/lib/mailslurp_client/api/common_actions_controller_api.rb +201 -0
- data/lib/mailslurp_client/api/contact_controller_api.rb +323 -0
- data/lib/mailslurp_client/api/domain_controller_api.rb +264 -0
- data/lib/mailslurp_client/api/email_controller_api.rb +852 -0
- data/lib/mailslurp_client/api/group_controller_api.rb +519 -0
- data/lib/mailslurp_client/api/inbox_controller_api.rb +763 -0
- data/lib/mailslurp_client/api/template_controller_api.rb +323 -0
- data/lib/mailslurp_client/api/wait_for_controller_api.rb +359 -0
- data/lib/mailslurp_client/api/webhook_controller_api.rb +405 -0
- data/lib/mailslurp_client/api_client.rb +36 -39
- data/lib/mailslurp_client/api_error.rb +23 -4
- data/lib/mailslurp_client/configuration.rb +8 -11
- data/lib/mailslurp_client/models/attachment_meta_data.rb +253 -0
- data/lib/mailslurp_client/models/basic_auth_options.rb +39 -15
- data/lib/mailslurp_client/models/bulk_send_email_options.rb +42 -19
- data/lib/mailslurp_client/models/contact_dto.rb +288 -0
- data/lib/mailslurp_client/models/contact_projection.rb +261 -0
- data/lib/mailslurp_client/models/create_contact_options.rb +277 -0
- data/lib/mailslurp_client/models/create_domain_options.rb +208 -0
- data/lib/mailslurp_client/models/create_group_options.rb +220 -0
- data/lib/mailslurp_client/models/create_template_options.rb +225 -0
- data/lib/mailslurp_client/models/create_webhook_options.rb +54 -29
- data/lib/mailslurp_client/models/domain_dto.rb +296 -0
- data/lib/mailslurp_client/models/domain_preview.rb +240 -0
- data/lib/mailslurp_client/models/email.rb +86 -78
- data/lib/mailslurp_client/models/email_analysis.rb +46 -48
- data/lib/mailslurp_client/models/email_preview.rb +77 -41
- data/lib/mailslurp_client/models/email_projection.rb +306 -0
- data/lib/mailslurp_client/models/forward_email_options.rb +40 -17
- data/lib/mailslurp_client/models/group_contacts_dto.rb +227 -0
- data/lib/mailslurp_client/models/{webhook.rb → group_dto.rb} +60 -54
- data/lib/mailslurp_client/models/group_projection.rb +248 -0
- data/lib/mailslurp_client/models/html_validation_result.rb +243 -0
- data/lib/mailslurp_client/models/inbox.rb +104 -26
- data/lib/mailslurp_client/models/inbox_projection.rb +272 -0
- data/lib/mailslurp_client/models/json_node.rb +429 -0
- data/lib/mailslurp_client/models/match_option.rb +48 -24
- data/lib/mailslurp_client/models/match_options.rb +37 -14
- data/lib/mailslurp_client/models/page_contact_projection.rb +298 -0
- data/lib/mailslurp_client/models/page_email_preview.rb +298 -0
- data/lib/mailslurp_client/models/page_email_projection.rb +298 -0
- data/lib/mailslurp_client/models/page_group_projection.rb +298 -0
- data/lib/mailslurp_client/models/page_inbox_projection.rb +298 -0
- data/lib/mailslurp_client/models/page_template_projection.rb +298 -0
- data/lib/mailslurp_client/models/page_webhook_projection.rb +298 -0
- data/lib/mailslurp_client/models/pageable.rb +251 -0
- data/lib/mailslurp_client/models/raw_email_json.rb +211 -0
- data/lib/mailslurp_client/models/send_email_options.rb +141 -46
- data/lib/mailslurp_client/models/set_inbox_favourited_options.rb +208 -0
- data/lib/mailslurp_client/models/sort.rb +224 -0
- data/lib/mailslurp_client/models/template_dto.rb +269 -0
- data/lib/mailslurp_client/models/template_projection.rb +269 -0
- data/lib/mailslurp_client/models/template_variable.rb +259 -0
- data/lib/mailslurp_client/models/unread_count.rb +211 -0
- data/lib/mailslurp_client/models/update_group_contacts.rb +213 -0
- data/lib/mailslurp_client/models/update_inbox_options.rb +250 -0
- data/lib/mailslurp_client/models/upload_attachment_options.rb +43 -20
- data/lib/mailslurp_client/models/validation_dto.rb +225 -0
- data/lib/mailslurp_client/models/validation_message.rb +220 -0
- data/lib/mailslurp_client/models/wait_for_conditions.rb +315 -0
- data/lib/mailslurp_client/models/webhook_dto.rb +326 -0
- data/lib/mailslurp_client/models/webhook_projection.rb +277 -0
- data/lib/mailslurp_client/models/webhook_test_request.rb +284 -0
- data/lib/mailslurp_client/models/webhook_test_response.rb +215 -0
- data/lib/mailslurp_client/models/webhook_test_result.rb +235 -0
- data/lib/mailslurp_client/version.rb +5 -5
- data/mailslurp_client.gemspec +4 -10
- data/spec/api/attachment_controller_api_spec.rb +61 -0
- data/spec/api/bulk_actions_controller_api_spec.rb +68 -0
- data/spec/api/common_actions_controller_api_spec.rb +129 -0
- data/spec/api/contact_controller_api_spec.rb +91 -0
- data/spec/api/domain_controller_api_spec.rb +82 -0
- data/spec/api/email_controller_api_spec.rb +162 -0
- data/spec/api/group_controller_api_spec.rb +126 -0
- data/spec/api/inbox_controller_api_spec.rb +172 -0
- data/spec/api/template_controller_api_spec.rb +91 -0
- data/spec/api/wait_for_controller_api_spec.rb +107 -0
- data/spec/api/webhook_controller_api_spec.rb +107 -0
- data/spec/api_client_spec.rb +5 -5
- data/spec/configuration_spec.rb +4 -4
- data/spec/models/attachment_meta_data_spec.rb +59 -0
- data/spec/models/basic_auth_options_spec.rb +4 -4
- data/spec/models/bulk_send_email_options_spec.rb +4 -4
- data/spec/models/contact_dto_spec.rb +83 -0
- data/spec/models/contact_projection_spec.rb +71 -0
- data/spec/models/create_contact_options_spec.rb +83 -0
- data/spec/models/create_domain_options_spec.rb +41 -0
- data/spec/models/create_group_options_spec.rb +47 -0
- data/spec/models/create_template_options_spec.rb +47 -0
- data/spec/models/create_webhook_options_spec.rb +6 -6
- data/spec/models/domain_dto_spec.rb +77 -0
- data/spec/models/domain_preview_spec.rb +53 -0
- data/spec/models/email_analysis_spec.rb +4 -4
- data/spec/models/email_preview_spec.rb +41 -5
- data/spec/models/email_projection_spec.rb +89 -0
- data/spec/models/email_spec.rb +17 -5
- data/spec/models/forward_email_options_spec.rb +4 -4
- data/spec/models/group_contacts_dto_spec.rb +47 -0
- data/spec/models/group_dto_spec.rb +59 -0
- data/spec/models/group_projection_spec.rb +59 -0
- data/spec/models/html_validation_result_spec.rb +53 -0
- data/spec/models/inbox_projection_spec.rb +77 -0
- data/spec/models/inbox_spec.rb +35 -5
- data/spec/models/json_node_spec.rb +171 -0
- data/spec/models/match_option_spec.rb +4 -4
- data/spec/models/match_options_spec.rb +4 -4
- data/spec/models/page_contact_projection_spec.rb +101 -0
- data/spec/models/page_email_preview_spec.rb +101 -0
- data/spec/models/page_email_projection_spec.rb +101 -0
- data/spec/models/page_group_projection_spec.rb +101 -0
- data/spec/models/page_inbox_projection_spec.rb +101 -0
- data/spec/models/page_template_projection_spec.rb +101 -0
- data/spec/models/page_webhook_projection_spec.rb +101 -0
- data/spec/models/pageable_spec.rb +71 -0
- data/spec/models/raw_email_json_spec.rb +41 -0
- data/spec/models/send_email_options_spec.rb +45 -5
- data/spec/models/set_inbox_favourited_options_spec.rb +41 -0
- data/spec/models/sort_spec.rb +53 -0
- data/spec/models/template_dto_spec.rb +65 -0
- data/spec/models/template_projection_spec.rb +65 -0
- data/spec/models/template_variable_spec.rb +51 -0
- data/spec/models/unread_count_spec.rb +41 -0
- data/spec/models/update_group_contacts_spec.rb +41 -0
- data/spec/models/{webhook_spec.rb → update_inbox_options_spec.rb} +14 -20
- data/spec/models/upload_attachment_options_spec.rb +4 -4
- data/spec/models/validation_dto_spec.rb +47 -0
- data/spec/models/validation_message_spec.rb +47 -0
- data/spec/models/wait_for_conditions_spec.rb +85 -0
- data/spec/models/webhook_dto_spec.rb +93 -0
- data/spec/models/webhook_projection_spec.rb +71 -0
- data/spec/models/webhook_test_request_spec.rb +63 -0
- data/spec/models/webhook_test_response_spec.rb +47 -0
- data/spec/models/webhook_test_result_spec.rb +53 -0
- data/spec/spec_helper.rb +4 -4
- metadata +223 -149
- data/Gemfile.lock +0 -79
- data/docs/CommonOperationsApi.md +0 -499
- data/docs/ExtraOperationsApi.md +0 -1021
- data/docs/Webhook.md +0 -13
- data/lib/mailslurp_client/api/common_operations_api.rb +0 -502
- data/lib/mailslurp_client/api/extra_operations_api.rb +0 -1054
- data/spec/api/common_operations_api_spec.rb +0 -95
- data/spec/api/extra_operations_api_spec.rb +0 -231
@@ -0,0 +1,17 @@
|
|
1
|
+
# MailSlurpClient::UpdateGroupContacts
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**contact_ids** | **Array<String>** | |
|
8
|
+
|
9
|
+
## Code Sample
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
require 'MailSlurpClient'
|
13
|
+
|
14
|
+
instance = MailSlurpClient::UpdateGroupContacts.new(contact_ids: null)
|
15
|
+
```
|
16
|
+
|
17
|
+
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# MailSlurpClient::UpdateInboxOptions
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**description** | **String** | Optional description of an inbox for labelling purposes | [optional]
|
8
|
+
**expires_at** | **DateTime** | When, if ever, will the inbox expire and be deleted. If null then this inbox is permanent and the emails in it won't be deleted. | [optional]
|
9
|
+
**favourite** | **Boolean** | Is the inbox favourited | [optional]
|
10
|
+
**name** | **String** | Optional name of the inbox. Displayed in the dashboard for easier search | [optional]
|
11
|
+
**tags** | **Array<String>** | Tags that inbox has been tagged with | [optional]
|
12
|
+
|
13
|
+
## Code Sample
|
14
|
+
|
15
|
+
```ruby
|
16
|
+
require 'MailSlurpClient'
|
17
|
+
|
18
|
+
instance = MailSlurpClient::UpdateInboxOptions.new(description: null,
|
19
|
+
expires_at: null,
|
20
|
+
favourite: null,
|
21
|
+
name: null,
|
22
|
+
tags: null)
|
23
|
+
```
|
24
|
+
|
25
|
+
|
@@ -1,10 +1,21 @@
|
|
1
1
|
# MailSlurpClient::UploadAttachmentOptions
|
2
2
|
|
3
3
|
## Properties
|
4
|
+
|
4
5
|
Name | Type | Description | Notes
|
5
6
|
------------ | ------------- | ------------- | -------------
|
6
7
|
**base64_contents** | **String** | Base64 encoded string of file contents | [optional]
|
7
|
-
**content_type** | **String** | Optional contentType for file. For instance application/pdf | [optional]
|
8
|
+
**content_type** | **String** | Optional contentType for file. For instance `application/pdf` | [optional]
|
8
9
|
**filename** | **String** | Optional filename to save upload with | [optional]
|
9
10
|
|
11
|
+
## Code Sample
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
require 'MailSlurpClient'
|
15
|
+
|
16
|
+
instance = MailSlurpClient::UploadAttachmentOptions.new(base64_contents: null,
|
17
|
+
content_type: null,
|
18
|
+
filename: null)
|
19
|
+
```
|
20
|
+
|
10
21
|
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# MailSlurpClient::ValidationDto
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**email_id** | **String** | |
|
8
|
+
**html** | [**HTMLValidationResult**](HTMLValidationResult.md) | |
|
9
|
+
|
10
|
+
## Code Sample
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
require 'MailSlurpClient'
|
14
|
+
|
15
|
+
instance = MailSlurpClient::ValidationDto.new(email_id: null,
|
16
|
+
html: null)
|
17
|
+
```
|
18
|
+
|
19
|
+
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# MailSlurpClient::ValidationMessage
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**line_number** | **Integer** | |
|
8
|
+
**message** | **String** | | [optional]
|
9
|
+
|
10
|
+
## Code Sample
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
require 'MailSlurpClient'
|
14
|
+
|
15
|
+
instance = MailSlurpClient::ValidationMessage.new(line_number: null,
|
16
|
+
message: null)
|
17
|
+
```
|
18
|
+
|
19
|
+
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# MailSlurpClient::WaitForConditions
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**count** | **Integer** | Number of results that should match conditions | [optional]
|
8
|
+
**count_type** | **String** | Should exactly count number of results be returned or at least that many. | [optional]
|
9
|
+
**inbox_id** | **String** | Inbox to search within | [optional]
|
10
|
+
**matches** | [**Array<MatchOption>**](MatchOption.md) | Conditions that should be matched | [optional]
|
11
|
+
**sort_direction** | **String** | Direction to sort matching emails by created time | [optional]
|
12
|
+
**timeout** | **Integer** | Max time in milliseconds to wait until conditions are met | [optional]
|
13
|
+
**unread_only** | **Boolean** | Apply only to unread emails | [optional]
|
14
|
+
|
15
|
+
## Code Sample
|
16
|
+
|
17
|
+
```ruby
|
18
|
+
require 'MailSlurpClient'
|
19
|
+
|
20
|
+
instance = MailSlurpClient::WaitForConditions.new(count: null,
|
21
|
+
count_type: null,
|
22
|
+
inbox_id: null,
|
23
|
+
matches: null,
|
24
|
+
sort_direction: null,
|
25
|
+
timeout: null,
|
26
|
+
unread_only: null)
|
27
|
+
```
|
28
|
+
|
29
|
+
|
@@ -0,0 +1,317 @@
|
|
1
|
+
# MailSlurpClient::WaitForControllerApi
|
2
|
+
|
3
|
+
All URIs are relative to *https://api.mailslurp.com*
|
4
|
+
|
5
|
+
Method | HTTP request | Description
|
6
|
+
------------- | ------------- | -------------
|
7
|
+
[**wait_for**](WaitForControllerApi.md#wait_for) | **POST** /waitFor | Wait for conditions to be met
|
8
|
+
[**wait_for_email_count**](WaitForControllerApi.md#wait_for_email_count) | **GET** /waitForEmailCount | Wait for and return count number of emails
|
9
|
+
[**wait_for_latest_email**](WaitForControllerApi.md#wait_for_latest_email) | **GET** /waitForLatestEmail | Fetch inbox's latest email or if empty wait for an email to arrive
|
10
|
+
[**wait_for_matching_email**](WaitForControllerApi.md#wait_for_matching_email) | **POST** /waitForMatchingEmails | Wait or return list of emails that match simple matching patterns
|
11
|
+
[**wait_for_nth_email**](WaitForControllerApi.md#wait_for_nth_email) | **GET** /waitForNthEmail | Wait for or fetch the email with a given index in the inbox specified
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
## wait_for
|
16
|
+
|
17
|
+
> Array<EmailPreview> wait_for(opts)
|
18
|
+
|
19
|
+
Wait for conditions to be met
|
20
|
+
|
21
|
+
Generic waitFor method that will wait until an inbox meets given conditions or return immediately if already met
|
22
|
+
|
23
|
+
### Example
|
24
|
+
|
25
|
+
```ruby
|
26
|
+
# load the gem
|
27
|
+
require 'mailslurp_client'
|
28
|
+
# setup authorization
|
29
|
+
MailSlurpClient.configure do |config|
|
30
|
+
# Configure API key authorization: API_KEY
|
31
|
+
config.api_key['x-api-key'] = 'YOUR API KEY'
|
32
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
33
|
+
#config.api_key_prefix['x-api-key'] = 'Bearer'
|
34
|
+
end
|
35
|
+
|
36
|
+
api_instance = MailSlurpClient::WaitForControllerApi.new
|
37
|
+
opts = {
|
38
|
+
wait_for_conditions: MailSlurpClient::WaitForConditions.new # WaitForConditions | Conditions to wait for
|
39
|
+
}
|
40
|
+
|
41
|
+
begin
|
42
|
+
#Wait for conditions to be met
|
43
|
+
result = api_instance.wait_for(opts)
|
44
|
+
p result
|
45
|
+
rescue MailSlurpClient::ApiError => e
|
46
|
+
puts "Exception when calling WaitForControllerApi->wait_for: #{e}"
|
47
|
+
end
|
48
|
+
```
|
49
|
+
|
50
|
+
### Parameters
|
51
|
+
|
52
|
+
|
53
|
+
Name | Type | Description | Notes
|
54
|
+
------------- | ------------- | ------------- | -------------
|
55
|
+
**wait_for_conditions** | [**WaitForConditions**](WaitForConditions.md)| Conditions to wait for | [optional]
|
56
|
+
|
57
|
+
### Return type
|
58
|
+
|
59
|
+
[**Array<EmailPreview>**](EmailPreview.md)
|
60
|
+
|
61
|
+
### Authorization
|
62
|
+
|
63
|
+
[API_KEY](../README.md#API_KEY)
|
64
|
+
|
65
|
+
### HTTP request headers
|
66
|
+
|
67
|
+
- **Content-Type**: application/json
|
68
|
+
- **Accept**: application/json
|
69
|
+
|
70
|
+
|
71
|
+
## wait_for_email_count
|
72
|
+
|
73
|
+
> Array<EmailPreview> wait_for_email_count(opts)
|
74
|
+
|
75
|
+
Wait for and return count number of emails
|
76
|
+
|
77
|
+
If inbox contains count or more emails at time of request then return count worth of emails. If not wait until the count is reached and return those or return an error if timeout is exceeded.
|
78
|
+
|
79
|
+
### Example
|
80
|
+
|
81
|
+
```ruby
|
82
|
+
# load the gem
|
83
|
+
require 'mailslurp_client'
|
84
|
+
# setup authorization
|
85
|
+
MailSlurpClient.configure do |config|
|
86
|
+
# Configure API key authorization: API_KEY
|
87
|
+
config.api_key['x-api-key'] = 'YOUR API KEY'
|
88
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
89
|
+
#config.api_key_prefix['x-api-key'] = 'Bearer'
|
90
|
+
end
|
91
|
+
|
92
|
+
api_instance = MailSlurpClient::WaitForControllerApi.new
|
93
|
+
opts = {
|
94
|
+
count: 56, # Integer | Number of emails to wait for. Must be greater that 1
|
95
|
+
inbox_id: 'inbox_id_example', # String | Id of the inbox we are fetching emails from
|
96
|
+
timeout: 56, # Integer | Max milliseconds to wait
|
97
|
+
unread_only: false # Boolean | Optional filter for unread only
|
98
|
+
}
|
99
|
+
|
100
|
+
begin
|
101
|
+
#Wait for and return count number of emails
|
102
|
+
result = api_instance.wait_for_email_count(opts)
|
103
|
+
p result
|
104
|
+
rescue MailSlurpClient::ApiError => e
|
105
|
+
puts "Exception when calling WaitForControllerApi->wait_for_email_count: #{e}"
|
106
|
+
end
|
107
|
+
```
|
108
|
+
|
109
|
+
### Parameters
|
110
|
+
|
111
|
+
|
112
|
+
Name | Type | Description | Notes
|
113
|
+
------------- | ------------- | ------------- | -------------
|
114
|
+
**count** | **Integer**| Number of emails to wait for. Must be greater that 1 | [optional]
|
115
|
+
**inbox_id** | [**String**](.md)| Id of the inbox we are fetching emails from | [optional]
|
116
|
+
**timeout** | **Integer**| Max milliseconds to wait | [optional]
|
117
|
+
**unread_only** | **Boolean**| Optional filter for unread only | [optional] [default to false]
|
118
|
+
|
119
|
+
### Return type
|
120
|
+
|
121
|
+
[**Array<EmailPreview>**](EmailPreview.md)
|
122
|
+
|
123
|
+
### Authorization
|
124
|
+
|
125
|
+
[API_KEY](../README.md#API_KEY)
|
126
|
+
|
127
|
+
### HTTP request headers
|
128
|
+
|
129
|
+
- **Content-Type**: Not defined
|
130
|
+
- **Accept**: application/json
|
131
|
+
|
132
|
+
|
133
|
+
## wait_for_latest_email
|
134
|
+
|
135
|
+
> Email wait_for_latest_email(opts)
|
136
|
+
|
137
|
+
Fetch inbox's latest email or if empty wait for an email to arrive
|
138
|
+
|
139
|
+
Will return either the last received email or wait for an email to arrive and return that. If you need to wait for an email for a non-empty inbox see the other receive methods such as waitForNthEmail or waitForEmailCount.
|
140
|
+
|
141
|
+
### Example
|
142
|
+
|
143
|
+
```ruby
|
144
|
+
# load the gem
|
145
|
+
require 'mailslurp_client'
|
146
|
+
# setup authorization
|
147
|
+
MailSlurpClient.configure do |config|
|
148
|
+
# Configure API key authorization: API_KEY
|
149
|
+
config.api_key['x-api-key'] = 'YOUR API KEY'
|
150
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
151
|
+
#config.api_key_prefix['x-api-key'] = 'Bearer'
|
152
|
+
end
|
153
|
+
|
154
|
+
api_instance = MailSlurpClient::WaitForControllerApi.new
|
155
|
+
opts = {
|
156
|
+
inbox_id: 'inbox_id_example', # String | Id of the inbox we are fetching emails from
|
157
|
+
timeout: 56, # Integer | Max milliseconds to wait
|
158
|
+
unread_only: false # Boolean | Optional filter for unread only
|
159
|
+
}
|
160
|
+
|
161
|
+
begin
|
162
|
+
#Fetch inbox's latest email or if empty wait for an email to arrive
|
163
|
+
result = api_instance.wait_for_latest_email(opts)
|
164
|
+
p result
|
165
|
+
rescue MailSlurpClient::ApiError => e
|
166
|
+
puts "Exception when calling WaitForControllerApi->wait_for_latest_email: #{e}"
|
167
|
+
end
|
168
|
+
```
|
169
|
+
|
170
|
+
### Parameters
|
171
|
+
|
172
|
+
|
173
|
+
Name | Type | Description | Notes
|
174
|
+
------------- | ------------- | ------------- | -------------
|
175
|
+
**inbox_id** | [**String**](.md)| Id of the inbox we are fetching emails from | [optional]
|
176
|
+
**timeout** | **Integer**| Max milliseconds to wait | [optional]
|
177
|
+
**unread_only** | **Boolean**| Optional filter for unread only | [optional] [default to false]
|
178
|
+
|
179
|
+
### Return type
|
180
|
+
|
181
|
+
[**Email**](Email.md)
|
182
|
+
|
183
|
+
### Authorization
|
184
|
+
|
185
|
+
[API_KEY](../README.md#API_KEY)
|
186
|
+
|
187
|
+
### HTTP request headers
|
188
|
+
|
189
|
+
- **Content-Type**: Not defined
|
190
|
+
- **Accept**: application/json
|
191
|
+
|
192
|
+
|
193
|
+
## wait_for_matching_email
|
194
|
+
|
195
|
+
> Array<EmailPreview> wait_for_matching_email(match_options, opts)
|
196
|
+
|
197
|
+
Wait or return list of emails that match simple matching patterns
|
198
|
+
|
199
|
+
Perform a search of emails in an inbox with the given patterns. If results match expected count then return or else retry the search until results are found or timeout is reached. Match options allow simple CONTAINS or EQUALS filtering on SUBJECT, TO, BCC, CC, and FROM. See the `MatchOptions` object for options.
|
200
|
+
|
201
|
+
### Example
|
202
|
+
|
203
|
+
```ruby
|
204
|
+
# load the gem
|
205
|
+
require 'mailslurp_client'
|
206
|
+
# setup authorization
|
207
|
+
MailSlurpClient.configure do |config|
|
208
|
+
# Configure API key authorization: API_KEY
|
209
|
+
config.api_key['x-api-key'] = 'YOUR API KEY'
|
210
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
211
|
+
#config.api_key_prefix['x-api-key'] = 'Bearer'
|
212
|
+
end
|
213
|
+
|
214
|
+
api_instance = MailSlurpClient::WaitForControllerApi.new
|
215
|
+
match_options = MailSlurpClient::MatchOptions.new # MatchOptions | matchOptions
|
216
|
+
opts = {
|
217
|
+
count: 56, # Integer | Number of emails to wait for. Must be greater that 1
|
218
|
+
inbox_id: 'inbox_id_example', # String | Id of the inbox we are fetching emails from
|
219
|
+
timeout: 56, # Integer | Max milliseconds to wait
|
220
|
+
unread_only: false # Boolean | Optional filter for unread only
|
221
|
+
}
|
222
|
+
|
223
|
+
begin
|
224
|
+
#Wait or return list of emails that match simple matching patterns
|
225
|
+
result = api_instance.wait_for_matching_email(match_options, opts)
|
226
|
+
p result
|
227
|
+
rescue MailSlurpClient::ApiError => e
|
228
|
+
puts "Exception when calling WaitForControllerApi->wait_for_matching_email: #{e}"
|
229
|
+
end
|
230
|
+
```
|
231
|
+
|
232
|
+
### Parameters
|
233
|
+
|
234
|
+
|
235
|
+
Name | Type | Description | Notes
|
236
|
+
------------- | ------------- | ------------- | -------------
|
237
|
+
**match_options** | [**MatchOptions**](MatchOptions.md)| matchOptions |
|
238
|
+
**count** | **Integer**| Number of emails to wait for. Must be greater that 1 | [optional]
|
239
|
+
**inbox_id** | [**String**](.md)| Id of the inbox we are fetching emails from | [optional]
|
240
|
+
**timeout** | **Integer**| Max milliseconds to wait | [optional]
|
241
|
+
**unread_only** | **Boolean**| Optional filter for unread only | [optional] [default to false]
|
242
|
+
|
243
|
+
### Return type
|
244
|
+
|
245
|
+
[**Array<EmailPreview>**](EmailPreview.md)
|
246
|
+
|
247
|
+
### Authorization
|
248
|
+
|
249
|
+
[API_KEY](../README.md#API_KEY)
|
250
|
+
|
251
|
+
### HTTP request headers
|
252
|
+
|
253
|
+
- **Content-Type**: application/json
|
254
|
+
- **Accept**: application/json
|
255
|
+
|
256
|
+
|
257
|
+
## wait_for_nth_email
|
258
|
+
|
259
|
+
> Email wait_for_nth_email(opts)
|
260
|
+
|
261
|
+
Wait for or fetch the email with a given index in the inbox specified
|
262
|
+
|
263
|
+
If nth email is already present in inbox then return it. If not hold the connection open until timeout expires or the nth email is received and returned.
|
264
|
+
|
265
|
+
### Example
|
266
|
+
|
267
|
+
```ruby
|
268
|
+
# load the gem
|
269
|
+
require 'mailslurp_client'
|
270
|
+
# setup authorization
|
271
|
+
MailSlurpClient.configure do |config|
|
272
|
+
# Configure API key authorization: API_KEY
|
273
|
+
config.api_key['x-api-key'] = 'YOUR API KEY'
|
274
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
275
|
+
#config.api_key_prefix['x-api-key'] = 'Bearer'
|
276
|
+
end
|
277
|
+
|
278
|
+
api_instance = MailSlurpClient::WaitForControllerApi.new
|
279
|
+
opts = {
|
280
|
+
inbox_id: 'inbox_id_example', # String | Id of the inbox you are fetching emails from
|
281
|
+
index: 56, # Integer | Zero based index of the email to wait for. If an inbox has 1 email already and you want to wait for the 2nd email pass index=1
|
282
|
+
timeout: 56, # Integer | Max milliseconds to wait for the nth email if not already present
|
283
|
+
unread_only: false # Boolean | Optional filter for unread only
|
284
|
+
}
|
285
|
+
|
286
|
+
begin
|
287
|
+
#Wait for or fetch the email with a given index in the inbox specified
|
288
|
+
result = api_instance.wait_for_nth_email(opts)
|
289
|
+
p result
|
290
|
+
rescue MailSlurpClient::ApiError => e
|
291
|
+
puts "Exception when calling WaitForControllerApi->wait_for_nth_email: #{e}"
|
292
|
+
end
|
293
|
+
```
|
294
|
+
|
295
|
+
### Parameters
|
296
|
+
|
297
|
+
|
298
|
+
Name | Type | Description | Notes
|
299
|
+
------------- | ------------- | ------------- | -------------
|
300
|
+
**inbox_id** | [**String**](.md)| Id of the inbox you are fetching emails from | [optional]
|
301
|
+
**index** | **Integer**| Zero based index of the email to wait for. If an inbox has 1 email already and you want to wait for the 2nd email pass index=1 | [optional]
|
302
|
+
**timeout** | **Integer**| Max milliseconds to wait for the nth email if not already present | [optional]
|
303
|
+
**unread_only** | **Boolean**| Optional filter for unread only | [optional] [default to false]
|
304
|
+
|
305
|
+
### Return type
|
306
|
+
|
307
|
+
[**Email**](Email.md)
|
308
|
+
|
309
|
+
### Authorization
|
310
|
+
|
311
|
+
[API_KEY](../README.md#API_KEY)
|
312
|
+
|
313
|
+
### HTTP request headers
|
314
|
+
|
315
|
+
- **Content-Type**: Not defined
|
316
|
+
- **Accept**: application/json
|
317
|
+
|