mailslurp_client 8.6.0 → 11.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5ccdb7be7e424bacdae29fcbf9dad515125046d5e38878a1f4e40179e8e8b9bd
4
- data.tar.gz: b83426fe6e87feb55e23f019caac8b51f07eeabaa52fe21a491695168f5ff0bf
3
+ metadata.gz: 48e7fae0e9bcd33c235827e7f0d7b10786b6a7c59c20da934c7be45f0a73885b
4
+ data.tar.gz: 8becaec583be3dce42d0d3fdb42bd406918c64a4a823c751a256dc3b0a19d3ae
5
5
  SHA512:
6
- metadata.gz: b274c058ff4fee095c2f1e72683c1280377f751ffb5f5f5d385c78eb93c62f2ebcba89185219c833e703681c91ac3cb2bd80415646567e6c8db20714bfa0024c
7
- data.tar.gz: 81d086b54c8c9bfc0197e6fe6a63b712b5c2a23373a7e20ad806ec84205e6fa3f0ab5d32c8f29fc6fe2ac14ca4ef17e15a9ed47aed65ae5a57b4f1ea0abad5bf
6
+ metadata.gz: 6f1f519904fd26c0c72f26161ea7ab9993ce232a6ad1fab303ff5039eb84c3a1ebb1e324fa1b4057d0514354d2f822c337a7e7cdf525c250cd124e4faf0fcf60
7
+ data.tar.gz: 6d66a00913826d5a6404da4559cafea4b25ca1fd4d7e59df966c3ed3b135324b438bb8377f81d2917f488983c731ffe9cb8377b5d4ed0a127553f9ad595b556c
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2020 MailSlurp Email API (Provided by Pettman OÜ, Estonia)
1
+ Copyright 2021 MailSlurp Email API (Provided by Pettman OÜ, Estonia)
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
4
 
@@ -38,6 +38,7 @@ require 'mailslurp_client/models/dns_lookup_results'
38
38
  require 'mailslurp_client/models/describe_domain_options'
39
39
  require 'mailslurp_client/models/describe_mail_server_domain_result'
40
40
  require 'mailslurp_client/models/domain_dto'
41
+ require 'mailslurp_client/models/domain_name_record'
41
42
  require 'mailslurp_client/models/domain_preview'
42
43
  require 'mailslurp_client/models/download_attachment_dto'
43
44
  require 'mailslurp_client/models/email'
@@ -46,6 +47,8 @@ require 'mailslurp_client/models/email_content_match_result'
46
47
  require 'mailslurp_client/models/email_preview'
47
48
  require 'mailslurp_client/models/email_projection'
48
49
  require 'mailslurp_client/models/email_verification_result'
50
+ require 'mailslurp_client/models/expired_inbox_dto'
51
+ require 'mailslurp_client/models/expired_inbox_record_projection'
49
52
  require 'mailslurp_client/models/forward_email_options'
50
53
  require 'mailslurp_client/models/group_contacts_dto'
51
54
  require 'mailslurp_client/models/group_dto'
@@ -62,6 +65,7 @@ require 'mailslurp_client/models/page_alias'
62
65
  require 'mailslurp_client/models/page_contact_projection'
63
66
  require 'mailslurp_client/models/page_email_preview'
64
67
  require 'mailslurp_client/models/page_email_projection'
68
+ require 'mailslurp_client/models/page_expired_inbox_record_projection'
65
69
  require 'mailslurp_client/models/page_group_projection'
66
70
  require 'mailslurp_client/models/page_inbox_projection'
67
71
  require 'mailslurp_client/models/page_sent_email_projection'
@@ -429,8 +429,8 @@ module MailSlurpClient
429
429
  # @param reply_to_alias_email_options [ReplyToAliasEmailOptions] replyToAliasEmailOptions
430
430
  # @param [Hash] opts the optional parameters
431
431
  # @return [SentEmailDto]
432
- def reply_to_email(alias_id, email_id, reply_to_alias_email_options, opts = {})
433
- data, _status_code, _headers = reply_to_email_with_http_info(alias_id, email_id, reply_to_alias_email_options, opts)
432
+ def reply_to_alias_email(alias_id, email_id, reply_to_alias_email_options, opts = {})
433
+ data, _status_code, _headers = reply_to_alias_email_with_http_info(alias_id, email_id, reply_to_alias_email_options, opts)
434
434
  data
435
435
  end
436
436
 
@@ -441,21 +441,21 @@ module MailSlurpClient
441
441
  # @param reply_to_alias_email_options [ReplyToAliasEmailOptions] replyToAliasEmailOptions
442
442
  # @param [Hash] opts the optional parameters
443
443
  # @return [Array<(SentEmailDto, Integer, Hash)>] SentEmailDto data, response status code and response headers
444
- def reply_to_email_with_http_info(alias_id, email_id, reply_to_alias_email_options, opts = {})
444
+ def reply_to_alias_email_with_http_info(alias_id, email_id, reply_to_alias_email_options, opts = {})
445
445
  if @api_client.config.debugging
446
- @api_client.config.logger.debug 'Calling API: AliasControllerApi.reply_to_email ...'
446
+ @api_client.config.logger.debug 'Calling API: AliasControllerApi.reply_to_alias_email ...'
447
447
  end
448
448
  # verify the required parameter 'alias_id' is set
449
449
  if @api_client.config.client_side_validation && alias_id.nil?
450
- fail ArgumentError, "Missing the required parameter 'alias_id' when calling AliasControllerApi.reply_to_email"
450
+ fail ArgumentError, "Missing the required parameter 'alias_id' when calling AliasControllerApi.reply_to_alias_email"
451
451
  end
452
452
  # verify the required parameter 'email_id' is set
453
453
  if @api_client.config.client_side_validation && email_id.nil?
454
- fail ArgumentError, "Missing the required parameter 'email_id' when calling AliasControllerApi.reply_to_email"
454
+ fail ArgumentError, "Missing the required parameter 'email_id' when calling AliasControllerApi.reply_to_alias_email"
455
455
  end
456
456
  # verify the required parameter 'reply_to_alias_email_options' is set
457
457
  if @api_client.config.client_side_validation && reply_to_alias_email_options.nil?
458
- fail ArgumentError, "Missing the required parameter 'reply_to_alias_email_options' when calling AliasControllerApi.reply_to_email"
458
+ fail ArgumentError, "Missing the required parameter 'reply_to_alias_email_options' when calling AliasControllerApi.reply_to_alias_email"
459
459
  end
460
460
  # resource path
461
461
  local_var_path = '/aliases/{aliasId}/emails/{emailId}'.sub('{' + 'aliasId' + '}', CGI.escape(alias_id.to_s)).sub('{' + 'emailId' + '}', CGI.escape(email_id.to_s))
@@ -493,13 +493,13 @@ module MailSlurpClient
493
493
 
494
494
  data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
495
495
  if @api_client.config.debugging
496
- @api_client.config.logger.debug "API called: AliasControllerApi#reply_to_email\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
496
+ @api_client.config.logger.debug "API called: AliasControllerApi#reply_to_alias_email\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
497
497
  end
498
498
  return data, status_code, headers
499
499
  end
500
500
 
501
501
  # Send an email from an alias inbox
502
- # Send an email from an alias. Replies to the email will be forwared to the alias masked email address
502
+ # Send an email from an alias. Replies to the email will be forwarded to the alias masked email address
503
503
  # @param alias_id [String] aliasId
504
504
  # @param [Hash] opts the optional parameters
505
505
  # @option opts [SendEmailOptions] :send_email_options Options for the email to be sent
@@ -510,7 +510,7 @@ module MailSlurpClient
510
510
  end
511
511
 
512
512
  # Send an email from an alias inbox
513
- # Send an email from an alias. Replies to the email will be forwared to the alias masked email address
513
+ # Send an email from an alias. Replies to the email will be forwarded to the alias masked email address
514
514
  # @param alias_id [String] aliasId
515
515
  # @param [Hash] opts the optional parameters
516
516
  # @option opts [SendEmailOptions] :send_email_options Options for the email to be sent
@@ -22,6 +22,9 @@ module MailSlurpClient
22
22
  # Create new random inbox
23
23
  # Returns an Inbox with an `id` and an `emailAddress`
24
24
  # @param [Hash] opts the optional parameters
25
+ # @option opts [DateTime] :expires_at expiresAt
26
+ # @option opts [Integer] :expires_in expiresIn
27
+ # @option opts [Boolean] :use_domain_pool useDomainPool
25
28
  # @return [Inbox]
26
29
  def create_new_email_address(opts = {})
27
30
  data, _status_code, _headers = create_new_email_address_with_http_info(opts)
@@ -31,6 +34,9 @@ module MailSlurpClient
31
34
  # Create new random inbox
32
35
  # Returns an Inbox with an &#x60;id&#x60; and an &#x60;emailAddress&#x60;
33
36
  # @param [Hash] opts the optional parameters
37
+ # @option opts [DateTime] :expires_at expiresAt
38
+ # @option opts [Integer] :expires_in expiresIn
39
+ # @option opts [Boolean] :use_domain_pool useDomainPool
34
40
  # @return [Array<(Inbox, Integer, Hash)>] Inbox data, response status code and response headers
35
41
  def create_new_email_address_with_http_info(opts = {})
36
42
  if @api_client.config.debugging
@@ -41,6 +47,9 @@ module MailSlurpClient
41
47
 
42
48
  # query parameters
43
49
  query_params = opts[:query_params] || {}
50
+ query_params[:'expiresAt'] = opts[:'expires_at'] if !opts[:'expires_at'].nil?
51
+ query_params[:'expiresIn'] = opts[:'expires_in'] if !opts[:'expires_in'].nil?
52
+ query_params[:'useDomainPool'] = opts[:'use_domain_pool'] if !opts[:'use_domain_pool'].nil?
44
53
 
45
54
  # header parameters
46
55
  header_params = opts[:header_params] || {}
@@ -78,6 +87,9 @@ module MailSlurpClient
78
87
  # Create new random inbox
79
88
  # Returns an Inbox with an `id` and an `emailAddress`
80
89
  # @param [Hash] opts the optional parameters
90
+ # @option opts [DateTime] :expires_at expiresAt
91
+ # @option opts [Integer] :expires_in expiresIn
92
+ # @option opts [Boolean] :use_domain_pool useDomainPool
81
93
  # @return [Inbox]
82
94
  def create_new_email_address1(opts = {})
83
95
  data, _status_code, _headers = create_new_email_address1_with_http_info(opts)
@@ -87,6 +99,9 @@ module MailSlurpClient
87
99
  # Create new random inbox
88
100
  # Returns an Inbox with an &#x60;id&#x60; and an &#x60;emailAddress&#x60;
89
101
  # @param [Hash] opts the optional parameters
102
+ # @option opts [DateTime] :expires_at expiresAt
103
+ # @option opts [Integer] :expires_in expiresIn
104
+ # @option opts [Boolean] :use_domain_pool useDomainPool
90
105
  # @return [Array<(Inbox, Integer, Hash)>] Inbox data, response status code and response headers
91
106
  def create_new_email_address1_with_http_info(opts = {})
92
107
  if @api_client.config.debugging
@@ -97,6 +112,9 @@ module MailSlurpClient
97
112
 
98
113
  # query parameters
99
114
  query_params = opts[:query_params] || {}
115
+ query_params[:'expiresAt'] = opts[:'expires_at'] if !opts[:'expires_at'].nil?
116
+ query_params[:'expiresIn'] = opts[:'expires_in'] if !opts[:'expires_in'].nil?
117
+ query_params[:'useDomainPool'] = opts[:'use_domain_pool'] if !opts[:'use_domain_pool'].nil?
100
118
 
101
119
  # header parameters
102
120
  header_params = opts[:header_params] || {}
@@ -931,8 +931,8 @@ module MailSlurpClient
931
931
  # @param reply_to_email_options [ReplyToEmailOptions] replyToEmailOptions
932
932
  # @param [Hash] opts the optional parameters
933
933
  # @return [SentEmailDto]
934
- def reply_to_email1(email_id, reply_to_email_options, opts = {})
935
- data, _status_code, _headers = reply_to_email1_with_http_info(email_id, reply_to_email_options, opts)
934
+ def reply_to_email(email_id, reply_to_email_options, opts = {})
935
+ data, _status_code, _headers = reply_to_email_with_http_info(email_id, reply_to_email_options, opts)
936
936
  data
937
937
  end
938
938
 
@@ -942,17 +942,17 @@ module MailSlurpClient
942
942
  # @param reply_to_email_options [ReplyToEmailOptions] replyToEmailOptions
943
943
  # @param [Hash] opts the optional parameters
944
944
  # @return [Array<(SentEmailDto, Integer, Hash)>] SentEmailDto data, response status code and response headers
945
- def reply_to_email1_with_http_info(email_id, reply_to_email_options, opts = {})
945
+ def reply_to_email_with_http_info(email_id, reply_to_email_options, opts = {})
946
946
  if @api_client.config.debugging
947
- @api_client.config.logger.debug 'Calling API: EmailControllerApi.reply_to_email1 ...'
947
+ @api_client.config.logger.debug 'Calling API: EmailControllerApi.reply_to_email ...'
948
948
  end
949
949
  # verify the required parameter 'email_id' is set
950
950
  if @api_client.config.client_side_validation && email_id.nil?
951
- fail ArgumentError, "Missing the required parameter 'email_id' when calling EmailControllerApi.reply_to_email1"
951
+ fail ArgumentError, "Missing the required parameter 'email_id' when calling EmailControllerApi.reply_to_email"
952
952
  end
953
953
  # verify the required parameter 'reply_to_email_options' is set
954
954
  if @api_client.config.client_side_validation && reply_to_email_options.nil?
955
- fail ArgumentError, "Missing the required parameter 'reply_to_email_options' when calling EmailControllerApi.reply_to_email1"
955
+ fail ArgumentError, "Missing the required parameter 'reply_to_email_options' when calling EmailControllerApi.reply_to_email"
956
956
  end
957
957
  # resource path
958
958
  local_var_path = '/emails/{emailId}'.sub('{' + 'emailId' + '}', CGI.escape(email_id.to_s))
@@ -990,7 +990,7 @@ module MailSlurpClient
990
990
 
991
991
  data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
992
992
  if @api_client.config.debugging
993
- @api_client.config.logger.debug "API called: EmailControllerApi#reply_to_email1\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
993
+ @api_client.config.logger.debug "API called: EmailControllerApi#reply_to_email\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
994
994
  end
995
995
  return data, status_code, headers
996
996
  end
@@ -22,12 +22,14 @@ module MailSlurpClient
22
22
  # Create an Inbox (email address)
23
23
  # Create a new inbox and with a randomized email address to send and receive from. Pass emailAddress parameter if you wish to use a specific email address. Creating an inbox is required before sending or receiving emails. If writing tests it is recommended that you create a new inbox during each test method so that it is unique and empty.
24
24
  # @param [Hash] opts the optional parameters
25
- # @option opts [String] :description Optional description for an inbox.
26
- # @option opts [String] :email_address Optional email address including domain you wish inbox to use (eg: test123@mydomain.com). Only supports domains that you have registered and verified with MailSlurp using dashboard or &#x60;createDomain&#x60; method.
27
- # @option opts [DateTime] :expires_at Optional expires at timestamp. If your plan supports this feature you can specify when an inbox should expire. If left empty inbox will exist permanently or expire when your plan dictates
28
- # @option opts [Boolean] :favourite Is inbox favourited.
29
- # @option opts [String] :name Optional name for an inbox.
30
- # @option opts [Array<String>] :tags Optional tags for an inbox. Can be used for searching and filtering inboxes.
25
+ # @option opts [String] :description Optional description of the inbox for labelling purposes. Is shown in the dashboard and can be used with
26
+ # @option opts [String] :email_address A custom email address to use with the inbox. Defaults to null. When null MailSlurp will assign a random email address to the inbox such as &#x60;123@mailslurp.com&#x60;. If you use the &#x60;useDomainPool&#x60; option when the email address is null it will generate an email address with a more varied domain ending such as &#x60;123@mailslurp.info&#x60; or &#x60;123@mailslurp.biz&#x60;. When a custom email address is provided the address is split into a domain and the domain is queried against your user. If you have created the domain in the MailSlurp dashboard and verified it you can use any email address that ends with the domain. Send an email to this address and the inbox will receive and store it for you. To retrieve the email use the Inbox and Email Controller endpoints with the inbox ID.
27
+ # @option opts [DateTime] :expires_at Optional inbox expiration date. If null then this inbox is permanent and the emails in it won&#39;t be deleted. If an expiration date is provided or is required by your plan the inbox will be closed when the expiration time is reached. Expired inboxes still contain their emails but can no longer send or receive emails. An ExpiredInboxRecord is created when an inbox and the email address and inbox ID are recorded. The expiresAt property is a timestamp string in ISO DateTime Format yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSXXX.
28
+ # @option opts [Integer] :expires_in Number of milliseconds that inbox should exist for
29
+ # @option opts [Boolean] :favourite Is the inbox favorited. Favouriting inboxes is typically done in the dashboard for quick access or filtering
30
+ # @option opts [String] :name Optional name of the inbox. Displayed in the dashboard for easier search
31
+ # @option opts [Array<String>] :tags Tags that inbox has been tagged with. Tags can be added to inboxes to group different inboxes within an account. You can also search for inboxes by tag in the dashboard UI.
32
+ # @option opts [Boolean] :use_domain_pool Use the MailSlurp domain name pool with this inbox when creating the email address. Defaults to null. If enabled the inbox will be an email address with a domain randomly chosen from a list of the MailSlurp domains. This is useful when the default &#x60;@mailslurp.com&#x60; email addresses used with inboxes are blocked or considered spam by a provider or receiving service. When domain pool is enabled an email address will be generated ending in &#x60;@mailslurp.{world,info,xyz,...}&#x60; . This means a TLD is randomly selecting from a list of &#x60;.biz&#x60;, &#x60;.info&#x60;, &#x60;.xyz&#x60; etc to add variance to the generated email addresses. When null or false MailSlurp uses the default behavior of &#x60;@mailslurp.com&#x60; or custom email address provided by the emailAddress field.
31
33
  # @return [Inbox]
32
34
  def create_inbox(opts = {})
33
35
  data, _status_code, _headers = create_inbox_with_http_info(opts)
@@ -37,12 +39,14 @@ module MailSlurpClient
37
39
  # Create an Inbox (email address)
38
40
  # Create a new inbox and with a randomized email address to send and receive from. Pass emailAddress parameter if you wish to use a specific email address. Creating an inbox is required before sending or receiving emails. If writing tests it is recommended that you create a new inbox during each test method so that it is unique and empty.
39
41
  # @param [Hash] opts the optional parameters
40
- # @option opts [String] :description Optional description for an inbox.
41
- # @option opts [String] :email_address Optional email address including domain you wish inbox to use (eg: test123@mydomain.com). Only supports domains that you have registered and verified with MailSlurp using dashboard or &#x60;createDomain&#x60; method.
42
- # @option opts [DateTime] :expires_at Optional expires at timestamp. If your plan supports this feature you can specify when an inbox should expire. If left empty inbox will exist permanently or expire when your plan dictates
43
- # @option opts [Boolean] :favourite Is inbox favourited.
44
- # @option opts [String] :name Optional name for an inbox.
45
- # @option opts [Array<String>] :tags Optional tags for an inbox. Can be used for searching and filtering inboxes.
42
+ # @option opts [String] :description Optional description of the inbox for labelling purposes. Is shown in the dashboard and can be used with
43
+ # @option opts [String] :email_address A custom email address to use with the inbox. Defaults to null. When null MailSlurp will assign a random email address to the inbox such as &#x60;123@mailslurp.com&#x60;. If you use the &#x60;useDomainPool&#x60; option when the email address is null it will generate an email address with a more varied domain ending such as &#x60;123@mailslurp.info&#x60; or &#x60;123@mailslurp.biz&#x60;. When a custom email address is provided the address is split into a domain and the domain is queried against your user. If you have created the domain in the MailSlurp dashboard and verified it you can use any email address that ends with the domain. Send an email to this address and the inbox will receive and store it for you. To retrieve the email use the Inbox and Email Controller endpoints with the inbox ID.
44
+ # @option opts [DateTime] :expires_at Optional inbox expiration date. If null then this inbox is permanent and the emails in it won&#39;t be deleted. If an expiration date is provided or is required by your plan the inbox will be closed when the expiration time is reached. Expired inboxes still contain their emails but can no longer send or receive emails. An ExpiredInboxRecord is created when an inbox and the email address and inbox ID are recorded. The expiresAt property is a timestamp string in ISO DateTime Format yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSXXX.
45
+ # @option opts [Integer] :expires_in Number of milliseconds that inbox should exist for
46
+ # @option opts [Boolean] :favourite Is the inbox favorited. Favouriting inboxes is typically done in the dashboard for quick access or filtering
47
+ # @option opts [String] :name Optional name of the inbox. Displayed in the dashboard for easier search
48
+ # @option opts [Array<String>] :tags Tags that inbox has been tagged with. Tags can be added to inboxes to group different inboxes within an account. You can also search for inboxes by tag in the dashboard UI.
49
+ # @option opts [Boolean] :use_domain_pool Use the MailSlurp domain name pool with this inbox when creating the email address. Defaults to null. If enabled the inbox will be an email address with a domain randomly chosen from a list of the MailSlurp domains. This is useful when the default &#x60;@mailslurp.com&#x60; email addresses used with inboxes are blocked or considered spam by a provider or receiving service. When domain pool is enabled an email address will be generated ending in &#x60;@mailslurp.{world,info,xyz,...}&#x60; . This means a TLD is randomly selecting from a list of &#x60;.biz&#x60;, &#x60;.info&#x60;, &#x60;.xyz&#x60; etc to add variance to the generated email addresses. When null or false MailSlurp uses the default behavior of &#x60;@mailslurp.com&#x60; or custom email address provided by the emailAddress field.
46
50
  # @return [Array<(Inbox, Integer, Hash)>] Inbox data, response status code and response headers
47
51
  def create_inbox_with_http_info(opts = {})
48
52
  if @api_client.config.debugging
@@ -56,9 +60,11 @@ module MailSlurpClient
56
60
  query_params[:'description'] = opts[:'description'] if !opts[:'description'].nil?
57
61
  query_params[:'emailAddress'] = opts[:'email_address'] if !opts[:'email_address'].nil?
58
62
  query_params[:'expiresAt'] = opts[:'expires_at'] if !opts[:'expires_at'].nil?
63
+ query_params[:'expiresIn'] = opts[:'expires_in'] if !opts[:'expires_in'].nil?
59
64
  query_params[:'favourite'] = opts[:'favourite'] if !opts[:'favourite'].nil?
60
65
  query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
61
66
  query_params[:'tags'] = @api_client.build_collection_param(opts[:'tags'], :multi) if !opts[:'tags'].nil?
67
+ query_params[:'useDomainPool'] = opts[:'use_domain_pool'] if !opts[:'use_domain_pool'].nil?
62
68
 
63
69
  # header parameters
64
70
  header_params = opts[:header_params] || {}
@@ -212,7 +218,7 @@ module MailSlurpClient
212
218
  end
213
219
 
214
220
  # Delete inbox
215
- # Permanently delete an inbox and associated email address aswell as all emails within the given inbox. This action cannot be undone. Note: deleting an inbox will not affect your account usage. Monthly inbox usage is based on how many inboxes you create within 30 days, not how many exist at time of request.
221
+ # Permanently delete an inbox and associated email address as well as all emails within the given inbox. This action cannot be undone. Note: deleting an inbox will not affect your account usage. Monthly inbox usage is based on how many inboxes you create within 30 days, not how many exist at time of request.
216
222
  # @param inbox_id [String] inboxId
217
223
  # @param [Hash] opts the optional parameters
218
224
  # @return [nil]
@@ -222,7 +228,7 @@ module MailSlurpClient
222
228
  end
223
229
 
224
230
  # Delete inbox
225
- # Permanently delete an inbox and associated email address aswell as all emails within the given inbox. This action cannot be undone. Note: deleting an inbox will not affect your account usage. Monthly inbox usage is based on how many inboxes you create within 30 days, not how many exist at time of request.
231
+ # Permanently delete an inbox and associated email address as well as all emails within the given inbox. This action cannot be undone. Note: deleting an inbox will not affect your account usage. Monthly inbox usage is based on how many inboxes you create within 30 days, not how many exist at time of request.
226
232
  # @param inbox_id [String] inboxId
227
233
  # @param [Hash] opts the optional parameters
228
234
  # @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
@@ -433,6 +439,199 @@ module MailSlurpClient
433
439
  return data, status_code, headers
434
440
  end
435
441
 
442
+ # Get an expired inbox record
443
+ # Inboxes created with an expiration date will expire after the given date and be moved to an ExpiredInbox entity. You can still read emails in the inbox but it can no longer send or receive emails. Fetch the expired inboxes to view the old inboxes properties
444
+ # @param expired_id [String] ID of the ExpiredInboxRecord you want to retrieve. This is different from the ID of the inbox you are interested in. See other methods for getting ExpiredInboxRecord for an inbox inboxId)
445
+ # @param [Hash] opts the optional parameters
446
+ # @return [ExpiredInboxDto]
447
+ def get_expired_inbox_record_by_id(expired_id, opts = {})
448
+ data, _status_code, _headers = get_expired_inbox_record_by_id_with_http_info(expired_id, opts)
449
+ data
450
+ end
451
+
452
+ # Get an expired inbox record
453
+ # Inboxes created with an expiration date will expire after the given date and be moved to an ExpiredInbox entity. You can still read emails in the inbox but it can no longer send or receive emails. Fetch the expired inboxes to view the old inboxes properties
454
+ # @param expired_id [String] ID of the ExpiredInboxRecord you want to retrieve. This is different from the ID of the inbox you are interested in. See other methods for getting ExpiredInboxRecord for an inbox inboxId)
455
+ # @param [Hash] opts the optional parameters
456
+ # @return [Array<(ExpiredInboxDto, Integer, Hash)>] ExpiredInboxDto data, response status code and response headers
457
+ def get_expired_inbox_record_by_id_with_http_info(expired_id, opts = {})
458
+ if @api_client.config.debugging
459
+ @api_client.config.logger.debug 'Calling API: InboxControllerApi.get_expired_inbox_record_by_id ...'
460
+ end
461
+ # verify the required parameter 'expired_id' is set
462
+ if @api_client.config.client_side_validation && expired_id.nil?
463
+ fail ArgumentError, "Missing the required parameter 'expired_id' when calling InboxControllerApi.get_expired_inbox_record_by_id"
464
+ end
465
+ # resource path
466
+ local_var_path = '/inboxes/expired-records/{expiredId}'.sub('{' + 'expiredId' + '}', CGI.escape(expired_id.to_s))
467
+
468
+ # query parameters
469
+ query_params = opts[:query_params] || {}
470
+
471
+ # header parameters
472
+ header_params = opts[:header_params] || {}
473
+ # HTTP header 'Accept' (if needed)
474
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
475
+
476
+ # form parameters
477
+ form_params = opts[:form_params] || {}
478
+
479
+ # http body (model)
480
+ post_body = opts[:body]
481
+
482
+ # return_type
483
+ return_type = opts[:return_type] || 'ExpiredInboxDto'
484
+
485
+ # auth_names
486
+ auth_names = opts[:auth_names] || ['API_KEY']
487
+
488
+ new_options = opts.merge(
489
+ :header_params => header_params,
490
+ :query_params => query_params,
491
+ :form_params => form_params,
492
+ :body => post_body,
493
+ :auth_names => auth_names,
494
+ :return_type => return_type
495
+ )
496
+
497
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
498
+ if @api_client.config.debugging
499
+ @api_client.config.logger.debug "API called: InboxControllerApi#get_expired_inbox_record_by_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
500
+ end
501
+ return data, status_code, headers
502
+ end
503
+
504
+ # Get expired inbox record for a previously existing inbox
505
+ # Use the inboxId to return an ExpiredInboxRecord if an inbox has expired. Inboxes expire and are disabled if an expiration date is set or plan requires. Returns 404 if no expired inbox is found for the inboxId
506
+ # @param inbox_id [String] ID of inbox you want to retrieve (not the inbox ID)
507
+ # @param [Hash] opts the optional parameters
508
+ # @return [ExpiredInboxDto]
509
+ def get_expired_inbox_record_by_inbox_id(inbox_id, opts = {})
510
+ data, _status_code, _headers = get_expired_inbox_record_by_inbox_id_with_http_info(inbox_id, opts)
511
+ data
512
+ end
513
+
514
+ # Get expired inbox record for a previously existing inbox
515
+ # Use the inboxId to return an ExpiredInboxRecord if an inbox has expired. Inboxes expire and are disabled if an expiration date is set or plan requires. Returns 404 if no expired inbox is found for the inboxId
516
+ # @param inbox_id [String] ID of inbox you want to retrieve (not the inbox ID)
517
+ # @param [Hash] opts the optional parameters
518
+ # @return [Array<(ExpiredInboxDto, Integer, Hash)>] ExpiredInboxDto data, response status code and response headers
519
+ def get_expired_inbox_record_by_inbox_id_with_http_info(inbox_id, opts = {})
520
+ if @api_client.config.debugging
521
+ @api_client.config.logger.debug 'Calling API: InboxControllerApi.get_expired_inbox_record_by_inbox_id ...'
522
+ end
523
+ # verify the required parameter 'inbox_id' is set
524
+ if @api_client.config.client_side_validation && inbox_id.nil?
525
+ fail ArgumentError, "Missing the required parameter 'inbox_id' when calling InboxControllerApi.get_expired_inbox_record_by_inbox_id"
526
+ end
527
+ # resource path
528
+ local_var_path = '/inboxes/{inboxId}/expired-record'.sub('{' + 'inboxId' + '}', CGI.escape(inbox_id.to_s))
529
+
530
+ # query parameters
531
+ query_params = opts[:query_params] || {}
532
+
533
+ # header parameters
534
+ header_params = opts[:header_params] || {}
535
+ # HTTP header 'Accept' (if needed)
536
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
537
+
538
+ # form parameters
539
+ form_params = opts[:form_params] || {}
540
+
541
+ # http body (model)
542
+ post_body = opts[:body]
543
+
544
+ # return_type
545
+ return_type = opts[:return_type] || 'ExpiredInboxDto'
546
+
547
+ # auth_names
548
+ auth_names = opts[:auth_names] || ['API_KEY']
549
+
550
+ new_options = opts.merge(
551
+ :header_params => header_params,
552
+ :query_params => query_params,
553
+ :form_params => form_params,
554
+ :body => post_body,
555
+ :auth_names => auth_names,
556
+ :return_type => return_type
557
+ )
558
+
559
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
560
+ if @api_client.config.debugging
561
+ @api_client.config.logger.debug "API called: InboxControllerApi#get_expired_inbox_record_by_inbox_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
562
+ end
563
+ return data, status_code, headers
564
+ end
565
+
566
+ # List records of expired inboxes
567
+ # Inboxes created with an expiration date will expire after the given date. An ExpiredInboxRecord is created that records the inboxes old ID and email address. You can still read emails in the inbox (using the inboxes old ID) but the email address associated with the inbox can no longer send or receive emails. Fetch expired inbox records to view the old inboxes properties
568
+ # @param [Hash] opts the optional parameters
569
+ # @option opts [Integer] :page Optional page index in inbox sent email list pagination (default to 0)
570
+ # @option opts [Integer] :size Optional page size in inbox sent email list pagination (default to 20)
571
+ # @option opts [String] :sort Optional createdAt sort direction ASC or DESC (default to 'ASC')
572
+ # @return [PageExpiredInboxRecordProjection]
573
+ def get_expired_inbox_records(opts = {})
574
+ data, _status_code, _headers = get_expired_inbox_records_with_http_info(opts)
575
+ data
576
+ end
577
+
578
+ # List records of expired inboxes
579
+ # Inboxes created with an expiration date will expire after the given date. An ExpiredInboxRecord is created that records the inboxes old ID and email address. You can still read emails in the inbox (using the inboxes old ID) but the email address associated with the inbox can no longer send or receive emails. Fetch expired inbox records to view the old inboxes properties
580
+ # @param [Hash] opts the optional parameters
581
+ # @option opts [Integer] :page Optional page index in inbox sent email list pagination
582
+ # @option opts [Integer] :size Optional page size in inbox sent email list pagination
583
+ # @option opts [String] :sort Optional createdAt sort direction ASC or DESC
584
+ # @return [Array<(PageExpiredInboxRecordProjection, Integer, Hash)>] PageExpiredInboxRecordProjection data, response status code and response headers
585
+ def get_expired_inbox_records_with_http_info(opts = {})
586
+ if @api_client.config.debugging
587
+ @api_client.config.logger.debug 'Calling API: InboxControllerApi.get_expired_inbox_records ...'
588
+ end
589
+ allowable_values = ["ASC", "DESC"]
590
+ if @api_client.config.client_side_validation && opts[:'sort'] && !allowable_values.include?(opts[:'sort'])
591
+ fail ArgumentError, "invalid value for \"sort\", must be one of #{allowable_values}"
592
+ end
593
+ # resource path
594
+ local_var_path = '/inboxes/expired-records'
595
+
596
+ # query parameters
597
+ query_params = opts[:query_params] || {}
598
+ query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
599
+ query_params[:'size'] = opts[:'size'] if !opts[:'size'].nil?
600
+ query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil?
601
+
602
+ # header parameters
603
+ header_params = opts[:header_params] || {}
604
+ # HTTP header 'Accept' (if needed)
605
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
606
+
607
+ # form parameters
608
+ form_params = opts[:form_params] || {}
609
+
610
+ # http body (model)
611
+ post_body = opts[:body]
612
+
613
+ # return_type
614
+ return_type = opts[:return_type] || 'PageExpiredInboxRecordProjection'
615
+
616
+ # auth_names
617
+ auth_names = opts[:auth_names] || ['API_KEY']
618
+
619
+ new_options = opts.merge(
620
+ :header_params => header_params,
621
+ :query_params => query_params,
622
+ :form_params => form_params,
623
+ :body => post_body,
624
+ :auth_names => auth_names,
625
+ :return_type => return_type
626
+ )
627
+
628
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
629
+ if @api_client.config.debugging
630
+ @api_client.config.logger.debug "API called: InboxControllerApi#get_expired_inbox_records\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
631
+ end
632
+ return data, status_code, headers
633
+ end
634
+
436
635
  # Get Inbox
437
636
  # Returns an inbox's properties, including its email address and ID.
438
637
  # @param inbox_id [String] inboxId