mailslurp_client 8.0.10 → 8.0.15

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.
Files changed (90) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +7 -0
  3. data/README.md +123 -0
  4. data/SECURITY.md +4 -0
  5. data/SUPPORT.md +4 -0
  6. data/lib/mailslurp_client/api/alias_controller_api.rb +405 -0
  7. data/lib/mailslurp_client/api/attachment_controller_api.rb +160 -0
  8. data/lib/mailslurp_client/api/bulk_actions_controller_api.rb +203 -0
  9. data/lib/mailslurp_client/api/common_actions_controller_api.rb +257 -0
  10. data/lib/mailslurp_client/api/contact_controller_api.rb +323 -0
  11. data/lib/mailslurp_client/api/domain_controller_api.rb +264 -0
  12. data/lib/mailslurp_client/api/email_controller_api.rb +852 -0
  13. data/lib/mailslurp_client/api/form_controller_api.rb +104 -0
  14. data/lib/mailslurp_client/api/group_controller_api.rb +592 -0
  15. data/lib/mailslurp_client/api/inbox_controller_api.rb +897 -0
  16. data/lib/mailslurp_client/api/mail_server_controller_api.rb +146 -0
  17. data/lib/mailslurp_client/api/sent_emails_controller_api.rb +152 -0
  18. data/lib/mailslurp_client/api/template_controller_api.rb +323 -0
  19. data/lib/mailslurp_client/api/wait_for_controller_api.rb +359 -0
  20. data/lib/mailslurp_client/api/webhook_controller_api.rb +405 -0
  21. data/lib/mailslurp_client/api_client.rb +388 -0
  22. data/lib/mailslurp_client/api_error.rb +57 -0
  23. data/lib/mailslurp_client/configuration.rb +248 -0
  24. data/lib/mailslurp_client/models/attachment_meta_data.rb +238 -0
  25. data/lib/mailslurp_client/models/basic_auth_options.rb +226 -0
  26. data/lib/mailslurp_client/models/bulk_send_email_options.rb +219 -0
  27. data/lib/mailslurp_client/models/contact_dto.rb +311 -0
  28. data/lib/mailslurp_client/models/contact_projection.rb +270 -0
  29. data/lib/mailslurp_client/models/create_anonymous_alias_options.rb +208 -0
  30. data/lib/mailslurp_client/models/create_contact_options.rb +277 -0
  31. data/lib/mailslurp_client/models/create_domain_options.rb +208 -0
  32. data/lib/mailslurp_client/models/create_group_options.rb +220 -0
  33. data/lib/mailslurp_client/models/create_owned_alias_options.rb +238 -0
  34. data/lib/mailslurp_client/models/create_template_options.rb +225 -0
  35. data/lib/mailslurp_client/models/create_webhook_options.rb +227 -0
  36. data/lib/mailslurp_client/models/describe_domain_options.rb +211 -0
  37. data/lib/mailslurp_client/models/describe_mail_server_domain_result.rb +237 -0
  38. data/lib/mailslurp_client/models/domain_dto.rb +296 -0
  39. data/lib/mailslurp_client/models/domain_preview.rb +240 -0
  40. data/lib/mailslurp_client/models/email.rb +386 -0
  41. data/lib/mailslurp_client/models/email_analysis.rb +248 -0
  42. data/lib/mailslurp_client/models/email_preview.rb +296 -0
  43. data/lib/mailslurp_client/models/email_projection.rb +325 -0
  44. data/lib/mailslurp_client/models/email_verification_result.rb +263 -0
  45. data/lib/mailslurp_client/models/forward_email_options.rb +244 -0
  46. data/lib/mailslurp_client/models/group_contacts_dto.rb +227 -0
  47. data/lib/mailslurp_client/models/group_dto.rb +248 -0
  48. data/lib/mailslurp_client/models/group_projection.rb +248 -0
  49. data/lib/mailslurp_client/models/html_validation_result.rb +244 -0
  50. data/lib/mailslurp_client/models/inbox.rb +290 -0
  51. data/lib/mailslurp_client/models/inbox_projection.rb +263 -0
  52. data/lib/mailslurp_client/models/match_option.rb +274 -0
  53. data/lib/mailslurp_client/models/match_options.rb +210 -0
  54. data/lib/mailslurp_client/models/model_alias.rb +284 -0
  55. data/lib/mailslurp_client/models/name_server_record.rb +254 -0
  56. data/lib/mailslurp_client/models/page_alias.rb +298 -0
  57. data/lib/mailslurp_client/models/page_contact_projection.rb +298 -0
  58. data/lib/mailslurp_client/models/page_email_preview.rb +298 -0
  59. data/lib/mailslurp_client/models/page_email_projection.rb +298 -0
  60. data/lib/mailslurp_client/models/page_group_projection.rb +298 -0
  61. data/lib/mailslurp_client/models/page_inbox_projection.rb +298 -0
  62. data/lib/mailslurp_client/models/page_sent_email_projection.rb +298 -0
  63. data/lib/mailslurp_client/models/page_template_projection.rb +298 -0
  64. data/lib/mailslurp_client/models/page_webhook_projection.rb +298 -0
  65. data/lib/mailslurp_client/models/pageable.rb +251 -0
  66. data/lib/mailslurp_client/models/raw_email_json.rb +211 -0
  67. data/lib/mailslurp_client/models/send_email_options.rb +392 -0
  68. data/lib/mailslurp_client/models/sent_email_dto.rb +351 -0
  69. data/lib/mailslurp_client/models/sent_email_projection.rb +344 -0
  70. data/lib/mailslurp_client/models/set_inbox_favourited_options.rb +208 -0
  71. data/lib/mailslurp_client/models/simple_send_email_options.rb +237 -0
  72. data/lib/mailslurp_client/models/sort.rb +224 -0
  73. data/lib/mailslurp_client/models/template_dto.rb +269 -0
  74. data/lib/mailslurp_client/models/template_projection.rb +269 -0
  75. data/lib/mailslurp_client/models/template_variable.rb +259 -0
  76. data/lib/mailslurp_client/models/unread_count.rb +211 -0
  77. data/lib/mailslurp_client/models/update_group_contacts.rb +213 -0
  78. data/lib/mailslurp_client/models/update_inbox_options.rb +250 -0
  79. data/lib/mailslurp_client/models/upload_attachment_options.rb +228 -0
  80. data/lib/mailslurp_client/models/validation_dto.rb +217 -0
  81. data/lib/mailslurp_client/models/validation_message.rb +220 -0
  82. data/lib/mailslurp_client/models/verify_email_address_options.rb +239 -0
  83. data/lib/mailslurp_client/models/wait_for_conditions.rb +316 -0
  84. data/lib/mailslurp_client/models/webhook_dto.rb +326 -0
  85. data/lib/mailslurp_client/models/webhook_projection.rb +277 -0
  86. data/lib/mailslurp_client/models/webhook_test_request.rb +284 -0
  87. data/lib/mailslurp_client/models/webhook_test_response.rb +215 -0
  88. data/lib/mailslurp_client/models/webhook_test_result.rb +235 -0
  89. data/lib/mailslurp_client/version.rb +15 -0
  90. metadata +90 -2
@@ -0,0 +1,160 @@
1
+ =begin
2
+ #MailSlurp API
3
+
4
+ #MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://www.mailslurp.com/docs/) - [Examples](https://github.com/mailslurp/examples) repository
5
+
6
+ The version of the OpenAPI document: 6.5.2
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'cgi'
14
+
15
+ module MailSlurpClient
16
+ class AttachmentControllerApi
17
+ attr_accessor :api_client
18
+
19
+ def initialize(api_client = ApiClient.default)
20
+ @api_client = api_client
21
+ end
22
+ # Upload an attachment for sending
23
+ # When sending emails with attachments first upload each attachment with this endpoint. Record the returned attachment IDs. Then use these attachment IDs in the SendEmailOptions when sending an email. This means that attachments can easily be reused.
24
+ # @param upload_options [UploadAttachmentOptions] uploadOptions
25
+ # @param [Hash] opts the optional parameters
26
+ # @return [Array<String>]
27
+ def upload_attachment(upload_options, opts = {})
28
+ data, _status_code, _headers = upload_attachment_with_http_info(upload_options, opts)
29
+ data
30
+ end
31
+
32
+ # Upload an attachment for sending
33
+ # When sending emails with attachments first upload each attachment with this endpoint. Record the returned attachment IDs. Then use these attachment IDs in the SendEmailOptions when sending an email. This means that attachments can easily be reused.
34
+ # @param upload_options [UploadAttachmentOptions] uploadOptions
35
+ # @param [Hash] opts the optional parameters
36
+ # @return [Array<(Array<String>, Integer, Hash)>] Array<String> data, response status code and response headers
37
+ def upload_attachment_with_http_info(upload_options, opts = {})
38
+ if @api_client.config.debugging
39
+ @api_client.config.logger.debug 'Calling API: AttachmentControllerApi.upload_attachment ...'
40
+ end
41
+ # verify the required parameter 'upload_options' is set
42
+ if @api_client.config.client_side_validation && upload_options.nil?
43
+ fail ArgumentError, "Missing the required parameter 'upload_options' when calling AttachmentControllerApi.upload_attachment"
44
+ end
45
+ # resource path
46
+ local_var_path = '/attachments'
47
+
48
+ # query parameters
49
+ query_params = opts[:query_params] || {}
50
+
51
+ # header parameters
52
+ header_params = opts[:header_params] || {}
53
+ # HTTP header 'Accept' (if needed)
54
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
55
+ # HTTP header 'Content-Type'
56
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
57
+
58
+ # form parameters
59
+ form_params = opts[:form_params] || {}
60
+
61
+ # http body (model)
62
+ post_body = opts[:body] || @api_client.object_to_http_body(upload_options)
63
+
64
+ # return_type
65
+ return_type = opts[:return_type] || 'Array<String>'
66
+
67
+ # auth_names
68
+ auth_names = opts[:auth_names] || ['API_KEY']
69
+
70
+ new_options = opts.merge(
71
+ :header_params => header_params,
72
+ :query_params => query_params,
73
+ :form_params => form_params,
74
+ :body => post_body,
75
+ :auth_names => auth_names,
76
+ :return_type => return_type
77
+ )
78
+
79
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
80
+ if @api_client.config.debugging
81
+ @api_client.config.logger.debug "API called: AttachmentControllerApi#upload_attachment\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
82
+ end
83
+ return data, status_code, headers
84
+ end
85
+
86
+ # Upload an attachment for sending using Multipart Form
87
+ # When sending emails with attachments first upload each attachment with this endpoint. Record the returned attachment IDs. Then use these attachment IDs in the SendEmailOptions when sending an email. This means that attachments can easily be reused.
88
+ # @param file [File] file
89
+ # @param [Hash] opts the optional parameters
90
+ # @option opts [String] :content_type contentType
91
+ # @option opts [String] :filename filename
92
+ # @option opts [String] :x_filename x-filename
93
+ # @return [Array<String>]
94
+ def upload_multipart_form(file, opts = {})
95
+ data, _status_code, _headers = upload_multipart_form_with_http_info(file, opts)
96
+ data
97
+ end
98
+
99
+ # Upload an attachment for sending using Multipart Form
100
+ # When sending emails with attachments first upload each attachment with this endpoint. Record the returned attachment IDs. Then use these attachment IDs in the SendEmailOptions when sending an email. This means that attachments can easily be reused.
101
+ # @param file [File] file
102
+ # @param [Hash] opts the optional parameters
103
+ # @option opts [String] :content_type contentType
104
+ # @option opts [String] :filename filename
105
+ # @option opts [String] :x_filename x-filename
106
+ # @return [Array<(Array<String>, Integer, Hash)>] Array<String> data, response status code and response headers
107
+ def upload_multipart_form_with_http_info(file, opts = {})
108
+ if @api_client.config.debugging
109
+ @api_client.config.logger.debug 'Calling API: AttachmentControllerApi.upload_multipart_form ...'
110
+ end
111
+ # verify the required parameter 'file' is set
112
+ if @api_client.config.client_side_validation && file.nil?
113
+ fail ArgumentError, "Missing the required parameter 'file' when calling AttachmentControllerApi.upload_multipart_form"
114
+ end
115
+ # resource path
116
+ local_var_path = '/attachments/multipart'
117
+
118
+ # query parameters
119
+ query_params = opts[:query_params] || {}
120
+ query_params[:'contentType'] = opts[:'content_type'] if !opts[:'content_type'].nil?
121
+ query_params[:'filename'] = opts[:'filename'] if !opts[:'filename'].nil?
122
+ query_params[:'x-filename'] = opts[:'x_filename'] if !opts[:'x_filename'].nil?
123
+
124
+ # header parameters
125
+ header_params = opts[:header_params] || {}
126
+ # HTTP header 'Accept' (if needed)
127
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
128
+ # HTTP header 'Content-Type'
129
+ header_params['Content-Type'] = @api_client.select_header_content_type(['multipart/form-data'])
130
+
131
+ # form parameters
132
+ form_params = opts[:form_params] || {}
133
+ form_params['file'] = file
134
+
135
+ # http body (model)
136
+ post_body = opts[:body]
137
+
138
+ # return_type
139
+ return_type = opts[:return_type] || 'Array<String>'
140
+
141
+ # auth_names
142
+ auth_names = opts[:auth_names] || ['API_KEY']
143
+
144
+ new_options = opts.merge(
145
+ :header_params => header_params,
146
+ :query_params => query_params,
147
+ :form_params => form_params,
148
+ :body => post_body,
149
+ :auth_names => auth_names,
150
+ :return_type => return_type
151
+ )
152
+
153
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
154
+ if @api_client.config.debugging
155
+ @api_client.config.logger.debug "API called: AttachmentControllerApi#upload_multipart_form\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
156
+ end
157
+ return data, status_code, headers
158
+ end
159
+ end
160
+ end
@@ -0,0 +1,203 @@
1
+ =begin
2
+ #MailSlurp API
3
+
4
+ #MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://www.mailslurp.com/docs/) - [Examples](https://github.com/mailslurp/examples) repository
5
+
6
+ The version of the OpenAPI document: 6.5.2
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'cgi'
14
+
15
+ module MailSlurpClient
16
+ class BulkActionsControllerApi
17
+ attr_accessor :api_client
18
+
19
+ def initialize(api_client = ApiClient.default)
20
+ @api_client = api_client
21
+ end
22
+ # Bulk create Inboxes (email addresses)
23
+ # @param count [Integer] Number of inboxes to be created in bulk
24
+ # @param [Hash] opts the optional parameters
25
+ # @return [Array<Inbox>]
26
+ def bulk_create_inboxes(count, opts = {})
27
+ data, _status_code, _headers = bulk_create_inboxes_with_http_info(count, opts)
28
+ data
29
+ end
30
+
31
+ # Bulk create Inboxes (email addresses)
32
+ # @param count [Integer] Number of inboxes to be created in bulk
33
+ # @param [Hash] opts the optional parameters
34
+ # @return [Array<(Array<Inbox>, Integer, Hash)>] Array<Inbox> data, response status code and response headers
35
+ def bulk_create_inboxes_with_http_info(count, opts = {})
36
+ if @api_client.config.debugging
37
+ @api_client.config.logger.debug 'Calling API: BulkActionsControllerApi.bulk_create_inboxes ...'
38
+ end
39
+ # verify the required parameter 'count' is set
40
+ if @api_client.config.client_side_validation && count.nil?
41
+ fail ArgumentError, "Missing the required parameter 'count' when calling BulkActionsControllerApi.bulk_create_inboxes"
42
+ end
43
+ # resource path
44
+ local_var_path = '/bulk/inboxes'
45
+
46
+ # query parameters
47
+ query_params = opts[:query_params] || {}
48
+ query_params[:'count'] = count
49
+
50
+ # header parameters
51
+ header_params = opts[:header_params] || {}
52
+ # HTTP header 'Accept' (if needed)
53
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
54
+
55
+ # form parameters
56
+ form_params = opts[:form_params] || {}
57
+
58
+ # http body (model)
59
+ post_body = opts[:body]
60
+
61
+ # return_type
62
+ return_type = opts[:return_type] || 'Array<Inbox>'
63
+
64
+ # auth_names
65
+ auth_names = opts[:auth_names] || ['API_KEY']
66
+
67
+ new_options = opts.merge(
68
+ :header_params => header_params,
69
+ :query_params => query_params,
70
+ :form_params => form_params,
71
+ :body => post_body,
72
+ :auth_names => auth_names,
73
+ :return_type => return_type
74
+ )
75
+
76
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
77
+ if @api_client.config.debugging
78
+ @api_client.config.logger.debug "API called: BulkActionsControllerApi#bulk_create_inboxes\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
79
+ end
80
+ return data, status_code, headers
81
+ end
82
+
83
+ # Bulk Delete Inboxes
84
+ # @param ids [Array<String>] ids
85
+ # @param [Hash] opts the optional parameters
86
+ # @return [nil]
87
+ def bulk_delete_inboxes(ids, opts = {})
88
+ bulk_delete_inboxes_with_http_info(ids, opts)
89
+ nil
90
+ end
91
+
92
+ # Bulk Delete Inboxes
93
+ # @param ids [Array<String>] ids
94
+ # @param [Hash] opts the optional parameters
95
+ # @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
96
+ def bulk_delete_inboxes_with_http_info(ids, opts = {})
97
+ if @api_client.config.debugging
98
+ @api_client.config.logger.debug 'Calling API: BulkActionsControllerApi.bulk_delete_inboxes ...'
99
+ end
100
+ # verify the required parameter 'ids' is set
101
+ if @api_client.config.client_side_validation && ids.nil?
102
+ fail ArgumentError, "Missing the required parameter 'ids' when calling BulkActionsControllerApi.bulk_delete_inboxes"
103
+ end
104
+ # resource path
105
+ local_var_path = '/bulk/inboxes'
106
+
107
+ # query parameters
108
+ query_params = opts[:query_params] || {}
109
+
110
+ # header parameters
111
+ header_params = opts[:header_params] || {}
112
+ # HTTP header 'Content-Type'
113
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
114
+
115
+ # form parameters
116
+ form_params = opts[:form_params] || {}
117
+
118
+ # http body (model)
119
+ post_body = opts[:body] || @api_client.object_to_http_body(ids)
120
+
121
+ # return_type
122
+ return_type = opts[:return_type]
123
+
124
+ # auth_names
125
+ auth_names = opts[:auth_names] || ['API_KEY']
126
+
127
+ new_options = opts.merge(
128
+ :header_params => header_params,
129
+ :query_params => query_params,
130
+ :form_params => form_params,
131
+ :body => post_body,
132
+ :auth_names => auth_names,
133
+ :return_type => return_type
134
+ )
135
+
136
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
137
+ if @api_client.config.debugging
138
+ @api_client.config.logger.debug "API called: BulkActionsControllerApi#bulk_delete_inboxes\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
139
+ end
140
+ return data, status_code, headers
141
+ end
142
+
143
+ # Bulk Send Emails
144
+ # @param bulk_send_email_options [BulkSendEmailOptions] bulkSendEmailOptions
145
+ # @param [Hash] opts the optional parameters
146
+ # @return [nil]
147
+ def bulk_send_emails(bulk_send_email_options, opts = {})
148
+ bulk_send_emails_with_http_info(bulk_send_email_options, opts)
149
+ nil
150
+ end
151
+
152
+ # Bulk Send Emails
153
+ # @param bulk_send_email_options [BulkSendEmailOptions] bulkSendEmailOptions
154
+ # @param [Hash] opts the optional parameters
155
+ # @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
156
+ def bulk_send_emails_with_http_info(bulk_send_email_options, opts = {})
157
+ if @api_client.config.debugging
158
+ @api_client.config.logger.debug 'Calling API: BulkActionsControllerApi.bulk_send_emails ...'
159
+ end
160
+ # verify the required parameter 'bulk_send_email_options' is set
161
+ if @api_client.config.client_side_validation && bulk_send_email_options.nil?
162
+ fail ArgumentError, "Missing the required parameter 'bulk_send_email_options' when calling BulkActionsControllerApi.bulk_send_emails"
163
+ end
164
+ # resource path
165
+ local_var_path = '/bulk/send'
166
+
167
+ # query parameters
168
+ query_params = opts[:query_params] || {}
169
+
170
+ # header parameters
171
+ header_params = opts[:header_params] || {}
172
+ # HTTP header 'Content-Type'
173
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
174
+
175
+ # form parameters
176
+ form_params = opts[:form_params] || {}
177
+
178
+ # http body (model)
179
+ post_body = opts[:body] || @api_client.object_to_http_body(bulk_send_email_options)
180
+
181
+ # return_type
182
+ return_type = opts[:return_type]
183
+
184
+ # auth_names
185
+ auth_names = opts[:auth_names] || ['API_KEY']
186
+
187
+ new_options = opts.merge(
188
+ :header_params => header_params,
189
+ :query_params => query_params,
190
+ :form_params => form_params,
191
+ :body => post_body,
192
+ :auth_names => auth_names,
193
+ :return_type => return_type
194
+ )
195
+
196
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
197
+ if @api_client.config.debugging
198
+ @api_client.config.logger.debug "API called: BulkActionsControllerApi#bulk_send_emails\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
199
+ end
200
+ return data, status_code, headers
201
+ end
202
+ end
203
+ end
@@ -0,0 +1,257 @@
1
+ =begin
2
+ #MailSlurp API
3
+
4
+ #MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://www.mailslurp.com/docs/) - [Examples](https://github.com/mailslurp/examples) repository
5
+
6
+ The version of the OpenAPI document: 6.5.2
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'cgi'
14
+
15
+ module MailSlurpClient
16
+ class CommonActionsControllerApi
17
+ attr_accessor :api_client
18
+
19
+ def initialize(api_client = ApiClient.default)
20
+ @api_client = api_client
21
+ end
22
+ # Create new random inbox
23
+ # Returns an Inbox with an `id` and an `emailAddress`
24
+ # @param [Hash] opts the optional parameters
25
+ # @return [Inbox]
26
+ def create_new_email_address(opts = {})
27
+ data, _status_code, _headers = create_new_email_address_with_http_info(opts)
28
+ data
29
+ end
30
+
31
+ # Create new random inbox
32
+ # Returns an Inbox with an &#x60;id&#x60; and an &#x60;emailAddress&#x60;
33
+ # @param [Hash] opts the optional parameters
34
+ # @return [Array<(Inbox, Integer, Hash)>] Inbox data, response status code and response headers
35
+ def create_new_email_address_with_http_info(opts = {})
36
+ if @api_client.config.debugging
37
+ @api_client.config.logger.debug 'Calling API: CommonActionsControllerApi.create_new_email_address ...'
38
+ end
39
+ # resource path
40
+ local_var_path = '/createInbox'
41
+
42
+ # query parameters
43
+ query_params = opts[:query_params] || {}
44
+
45
+ # header parameters
46
+ header_params = opts[:header_params] || {}
47
+ # HTTP header 'Accept' (if needed)
48
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
49
+
50
+ # form parameters
51
+ form_params = opts[:form_params] || {}
52
+
53
+ # http body (model)
54
+ post_body = opts[:body]
55
+
56
+ # return_type
57
+ return_type = opts[:return_type] || 'Inbox'
58
+
59
+ # auth_names
60
+ auth_names = opts[:auth_names] || ['API_KEY']
61
+
62
+ new_options = opts.merge(
63
+ :header_params => header_params,
64
+ :query_params => query_params,
65
+ :form_params => form_params,
66
+ :body => post_body,
67
+ :auth_names => auth_names,
68
+ :return_type => return_type
69
+ )
70
+
71
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
72
+ if @api_client.config.debugging
73
+ @api_client.config.logger.debug "API called: CommonActionsControllerApi#create_new_email_address\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
74
+ end
75
+ return data, status_code, headers
76
+ end
77
+
78
+ # Create new random inbox
79
+ # Returns an Inbox with an `id` and an `emailAddress`
80
+ # @param [Hash] opts the optional parameters
81
+ # @return [Inbox]
82
+ def create_new_email_address1(opts = {})
83
+ data, _status_code, _headers = create_new_email_address1_with_http_info(opts)
84
+ data
85
+ end
86
+
87
+ # Create new random inbox
88
+ # Returns an Inbox with an &#x60;id&#x60; and an &#x60;emailAddress&#x60;
89
+ # @param [Hash] opts the optional parameters
90
+ # @return [Array<(Inbox, Integer, Hash)>] Inbox data, response status code and response headers
91
+ def create_new_email_address1_with_http_info(opts = {})
92
+ if @api_client.config.debugging
93
+ @api_client.config.logger.debug 'Calling API: CommonActionsControllerApi.create_new_email_address1 ...'
94
+ end
95
+ # resource path
96
+ local_var_path = '/newEmailAddress'
97
+
98
+ # query parameters
99
+ query_params = opts[:query_params] || {}
100
+
101
+ # header parameters
102
+ header_params = opts[:header_params] || {}
103
+ # HTTP header 'Accept' (if needed)
104
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
105
+
106
+ # form parameters
107
+ form_params = opts[:form_params] || {}
108
+
109
+ # http body (model)
110
+ post_body = opts[:body]
111
+
112
+ # return_type
113
+ return_type = opts[:return_type] || 'Inbox'
114
+
115
+ # auth_names
116
+ auth_names = opts[:auth_names] || ['API_KEY']
117
+
118
+ new_options = opts.merge(
119
+ :header_params => header_params,
120
+ :query_params => query_params,
121
+ :form_params => form_params,
122
+ :body => post_body,
123
+ :auth_names => auth_names,
124
+ :return_type => return_type
125
+ )
126
+
127
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
128
+ if @api_client.config.debugging
129
+ @api_client.config.logger.debug "API called: CommonActionsControllerApi#create_new_email_address1\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
130
+ end
131
+ return data, status_code, headers
132
+ end
133
+
134
+ # Delete all emails in an inbox
135
+ # Deletes all emails
136
+ # @param inbox_id [String] inboxId
137
+ # @param [Hash] opts the optional parameters
138
+ # @return [nil]
139
+ def empty_inbox(inbox_id, opts = {})
140
+ empty_inbox_with_http_info(inbox_id, opts)
141
+ nil
142
+ end
143
+
144
+ # Delete all emails in an inbox
145
+ # Deletes all emails
146
+ # @param inbox_id [String] inboxId
147
+ # @param [Hash] opts the optional parameters
148
+ # @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
149
+ def empty_inbox_with_http_info(inbox_id, opts = {})
150
+ if @api_client.config.debugging
151
+ @api_client.config.logger.debug 'Calling API: CommonActionsControllerApi.empty_inbox ...'
152
+ end
153
+ # verify the required parameter 'inbox_id' is set
154
+ if @api_client.config.client_side_validation && inbox_id.nil?
155
+ fail ArgumentError, "Missing the required parameter 'inbox_id' when calling CommonActionsControllerApi.empty_inbox"
156
+ end
157
+ # resource path
158
+ local_var_path = '/emptyInbox'
159
+
160
+ # query parameters
161
+ query_params = opts[:query_params] || {}
162
+ query_params[:'inboxId'] = inbox_id
163
+
164
+ # header parameters
165
+ header_params = opts[:header_params] || {}
166
+
167
+ # form parameters
168
+ form_params = opts[:form_params] || {}
169
+
170
+ # http body (model)
171
+ post_body = opts[:body]
172
+
173
+ # return_type
174
+ return_type = opts[:return_type]
175
+
176
+ # auth_names
177
+ auth_names = opts[:auth_names] || ['API_KEY']
178
+
179
+ new_options = opts.merge(
180
+ :header_params => header_params,
181
+ :query_params => query_params,
182
+ :form_params => form_params,
183
+ :body => post_body,
184
+ :auth_names => auth_names,
185
+ :return_type => return_type
186
+ )
187
+
188
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
189
+ if @api_client.config.debugging
190
+ @api_client.config.logger.debug "API called: CommonActionsControllerApi#empty_inbox\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
191
+ end
192
+ return data, status_code, headers
193
+ end
194
+
195
+ # Send an email
196
+ # If no senderId or inboxId provided a random email address will be used to send from.
197
+ # @param email_options [SimpleSendEmailOptions] emailOptions
198
+ # @param [Hash] opts the optional parameters
199
+ # @return [nil]
200
+ def send_email_simple(email_options, opts = {})
201
+ send_email_simple_with_http_info(email_options, opts)
202
+ nil
203
+ end
204
+
205
+ # Send an email
206
+ # If no senderId or inboxId provided a random email address will be used to send from.
207
+ # @param email_options [SimpleSendEmailOptions] emailOptions
208
+ # @param [Hash] opts the optional parameters
209
+ # @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
210
+ def send_email_simple_with_http_info(email_options, opts = {})
211
+ if @api_client.config.debugging
212
+ @api_client.config.logger.debug 'Calling API: CommonActionsControllerApi.send_email_simple ...'
213
+ end
214
+ # verify the required parameter 'email_options' is set
215
+ if @api_client.config.client_side_validation && email_options.nil?
216
+ fail ArgumentError, "Missing the required parameter 'email_options' when calling CommonActionsControllerApi.send_email_simple"
217
+ end
218
+ # resource path
219
+ local_var_path = '/sendEmail'
220
+
221
+ # query parameters
222
+ query_params = opts[:query_params] || {}
223
+
224
+ # header parameters
225
+ header_params = opts[:header_params] || {}
226
+ # HTTP header 'Content-Type'
227
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
228
+
229
+ # form parameters
230
+ form_params = opts[:form_params] || {}
231
+
232
+ # http body (model)
233
+ post_body = opts[:body] || @api_client.object_to_http_body(email_options)
234
+
235
+ # return_type
236
+ return_type = opts[:return_type]
237
+
238
+ # auth_names
239
+ auth_names = opts[:auth_names] || ['API_KEY']
240
+
241
+ new_options = opts.merge(
242
+ :header_params => header_params,
243
+ :query_params => query_params,
244
+ :form_params => form_params,
245
+ :body => post_body,
246
+ :auth_names => auth_names,
247
+ :return_type => return_type
248
+ )
249
+
250
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
251
+ if @api_client.config.debugging
252
+ @api_client.config.logger.debug "API called: CommonActionsControllerApi#send_email_simple\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
253
+ end
254
+ return data, status_code, headers
255
+ end
256
+ end
257
+ end