MailchimpTransactional 1.0.59 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/MailchimpTransactional.gemspec +1 -1
- data/README.md +4 -3
- data/lib/MailchimpTransactional/api/allowlists_api.rb +1 -1
- data/lib/MailchimpTransactional/api/exports_api.rb +1 -1
- data/lib/MailchimpTransactional/api/inbound_api.rb +1 -1
- data/lib/MailchimpTransactional/api/ips_api.rb +10 -10
- data/lib/MailchimpTransactional/api/messages_api.rb +22 -12
- data/lib/MailchimpTransactional/api/metadata_api.rb +5 -5
- data/lib/MailchimpTransactional/api/rejects_api.rb +4 -4
- data/lib/MailchimpTransactional/api/senders_api.rb +8 -8
- data/lib/MailchimpTransactional/api/subaccounts_api.rb +8 -8
- data/lib/MailchimpTransactional/api/tags_api.rb +6 -6
- data/lib/MailchimpTransactional/api/templates_api.rb +9 -9
- data/lib/MailchimpTransactional/api/urls_api.rb +7 -7
- data/lib/MailchimpTransactional/api/users_api.rb +4 -4
- data/lib/MailchimpTransactional/api/webhooks_api.rb +6 -6
- data/lib/MailchimpTransactional/api/whitelists_api.rb +3 -3
- data/lib/MailchimpTransactional/api_client.rb +1 -1
- data/lib/MailchimpTransactional/api_error.rb +1 -1
- data/lib/MailchimpTransactional/configuration.rb +1 -1
- data/lib/MailchimpTransactional/version.rb +2 -2
- data/lib/MailchimpTransactional.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 94d1f18d5c388423a537d25f0ddc046989e8e527b550834c83def252ec30a562
|
|
4
|
+
data.tar.gz: 4d2bcaef77bd6f55ab160d3721adef9dbdb8345d7bb711231d0c653a34b61dd0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 859e72d61817816238a79806e5ab2aeace2006345f9b54d74481a5d9274d8cfa0e9309fbfa64c2b58ee553dc2fc8fd1d9a70686277d4607eae5497264383e08d
|
|
7
|
+
data.tar.gz: 4e03ac84bb18933431a1942f98c84fb0721ade07e3c6004944b10c6ec653da9494d121f75ef1905107043cff6b1598fb9ebc37f7ec63dbf96d4ad2fed39803af
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
7
7
|
|
|
8
|
-
OpenAPI spec version: 1.
|
|
8
|
+
OpenAPI spec version: 1.1.2
|
|
9
9
|
Contact: apihelp@mailchimp.com
|
|
10
10
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
11
|
Swagger Codegen version: 2.4.12
|
data/README.md
CHANGED
|
@@ -21,15 +21,15 @@ gem build MailchimpTransactional.gemspec
|
|
|
21
21
|
Then either install the gem locally:
|
|
22
22
|
|
|
23
23
|
```shell
|
|
24
|
-
gem install ./MailchimpTransactional-1.
|
|
24
|
+
gem install ./MailchimpTransactional-1.1.2.gem
|
|
25
25
|
```
|
|
26
|
-
(for development, run `gem install --dev ./MailchimpTransactional-1.
|
|
26
|
+
(for development, run `gem install --dev ./MailchimpTransactional-1.1.2.gem` to install the development dependencies)
|
|
27
27
|
|
|
28
28
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
29
29
|
|
|
30
30
|
Finally add this to the Gemfile:
|
|
31
31
|
|
|
32
|
-
gem 'MailchimpTransactional', '~> 1.
|
|
32
|
+
gem 'MailchimpTransactional', '~> 1.1.2'
|
|
33
33
|
|
|
34
34
|
### Install from Git
|
|
35
35
|
|
|
@@ -131,6 +131,7 @@ All URIs are relative to *https://mandrillapp.com/api/1.0*
|
|
|
131
131
|
| **messages.search_time_series** | /messages/search-time-series |
|
|
132
132
|
| **messages.send** | /messages/send |
|
|
133
133
|
| **messages.send_raw** | /messages/send-raw |
|
|
134
|
+
| **messages.send_sms** | /messages/send-sms |
|
|
134
135
|
| **messages.send_template** | /messages/send-template |
|
|
135
136
|
| **metadata.add** | /metadata/add |
|
|
136
137
|
| **metadata.delete** | /metadata/delete |
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.1.2
|
|
7
7
|
Contact: apihelp@mailchimp.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.4.12
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.1.2
|
|
7
7
|
Contact: apihelp@mailchimp.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.4.12
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.1.2
|
|
7
7
|
Contact: apihelp@mailchimp.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.4.12
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.1.2
|
|
7
7
|
Contact: apihelp@mailchimp.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.4.12
|
|
@@ -24,7 +24,7 @@ module MailchimpTransactional
|
|
|
24
24
|
# Cancels the warmup process for a dedicated IP.
|
|
25
25
|
# @param body
|
|
26
26
|
# @param [Hash] opts the optional parameters
|
|
27
|
-
# @return [Array<(
|
|
27
|
+
# @return [Array<(InlineResponse20021, Fixnum, Hash)>] InlineResponse20021 data, response status code and response headers
|
|
28
28
|
def cancel_warmup(body = {})
|
|
29
29
|
data = @api_client.call_api(:POST, '/ips/cancel-warmup', body)
|
|
30
30
|
data
|
|
@@ -34,7 +34,7 @@ module MailchimpTransactional
|
|
|
34
34
|
# Tests whether a domain name is valid for use as the custom reverse DNS for a dedicated IP.
|
|
35
35
|
# @param body
|
|
36
36
|
# @param [Hash] opts the optional parameters
|
|
37
|
-
# @return [Array<(
|
|
37
|
+
# @return [Array<(InlineResponse20027, Fixnum, Hash)>] InlineResponse20027 data, response status code and response headers
|
|
38
38
|
def check_custom_dns(body = {})
|
|
39
39
|
data = @api_client.call_api(:POST, '/ips/check-custom-dns', body)
|
|
40
40
|
data
|
|
@@ -44,7 +44,7 @@ module MailchimpTransactional
|
|
|
44
44
|
# Creates a pool and returns it. If a pool already exists with this name, no action will be performed.
|
|
45
45
|
# @param body
|
|
46
46
|
# @param [Hash] opts the optional parameters
|
|
47
|
-
# @return [Array<(
|
|
47
|
+
# @return [Array<(InlineResponse20025, Fixnum, Hash)>] InlineResponse20025 data, response status code and response headers
|
|
48
48
|
def create_pool(body = {})
|
|
49
49
|
data = @api_client.call_api(:POST, '/ips/create-pool', body)
|
|
50
50
|
data
|
|
@@ -54,7 +54,7 @@ module MailchimpTransactional
|
|
|
54
54
|
# Deletes a dedicated IP. This is permanent and cannot be undone.
|
|
55
55
|
# @param body
|
|
56
56
|
# @param [Hash] opts the optional parameters
|
|
57
|
-
# @return [Array<(
|
|
57
|
+
# @return [Array<(InlineResponse20023, Fixnum, Hash)>] InlineResponse20023 data, response status code and response headers
|
|
58
58
|
def delete(body = {})
|
|
59
59
|
data = @api_client.call_api(:POST, '/ips/delete', body)
|
|
60
60
|
data
|
|
@@ -64,7 +64,7 @@ module MailchimpTransactional
|
|
|
64
64
|
# Deletes a pool. A pool must be empty before you can delete it, and you cannot delete your default pool.
|
|
65
65
|
# @param body
|
|
66
66
|
# @param [Hash] opts the optional parameters
|
|
67
|
-
# @return [Array<(
|
|
67
|
+
# @return [Array<(InlineResponse20026, Fixnum, Hash)>] InlineResponse20026 data, response status code and response headers
|
|
68
68
|
def delete_pool(body = {})
|
|
69
69
|
data = @api_client.call_api(:POST, '/ips/delete-pool', body)
|
|
70
70
|
data
|
|
@@ -94,7 +94,7 @@ module MailchimpTransactional
|
|
|
94
94
|
# Lists your dedicated IP pools.
|
|
95
95
|
# @param body
|
|
96
96
|
# @param [Hash] opts the optional parameters
|
|
97
|
-
# @return [Array<(Array<
|
|
97
|
+
# @return [Array<(Array<InlineResponse20024>, Fixnum, Hash)>] Array<InlineResponse20024> data, response status code and response headers
|
|
98
98
|
def list_pools(body = {})
|
|
99
99
|
data = @api_client.call_api(:POST, '/ips/list-pools', body)
|
|
100
100
|
data
|
|
@@ -104,7 +104,7 @@ module MailchimpTransactional
|
|
|
104
104
|
# Describes a single dedicated IP pool.
|
|
105
105
|
# @param body
|
|
106
106
|
# @param [Hash] opts the optional parameters
|
|
107
|
-
# @return [Array<(
|
|
107
|
+
# @return [Array<(InlineResponse20025, Fixnum, Hash)>] InlineResponse20025 data, response status code and response headers
|
|
108
108
|
def pool_info(body = {})
|
|
109
109
|
data = @api_client.call_api(:POST, '/ips/pool-info', body)
|
|
110
110
|
data
|
|
@@ -124,7 +124,7 @@ module MailchimpTransactional
|
|
|
124
124
|
# Configures the custom DNS name for a dedicated IP.
|
|
125
125
|
# @param body
|
|
126
126
|
# @param [Hash] opts the optional parameters
|
|
127
|
-
# @return [Array<(
|
|
127
|
+
# @return [Array<(InlineResponse20028, Fixnum, Hash)>] InlineResponse20028 data, response status code and response headers
|
|
128
128
|
def set_custom_dns(body = {})
|
|
129
129
|
data = @api_client.call_api(:POST, '/ips/set-custom-dns', body)
|
|
130
130
|
data
|
|
@@ -134,7 +134,7 @@ module MailchimpTransactional
|
|
|
134
134
|
# Moves a dedicated IP to a different pool.
|
|
135
135
|
# @param body
|
|
136
136
|
# @param [Hash] opts the optional parameters
|
|
137
|
-
# @return [Array<(
|
|
137
|
+
# @return [Array<(InlineResponse20022, Fixnum, Hash)>] InlineResponse20022 data, response status code and response headers
|
|
138
138
|
def set_pool(body = {})
|
|
139
139
|
data = @api_client.call_api(:POST, '/ips/set-pool', body)
|
|
140
140
|
data
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.1.2
|
|
7
7
|
Contact: apihelp@mailchimp.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.4.12
|
|
@@ -24,7 +24,7 @@ module MailchimpTransactional
|
|
|
24
24
|
# Cancels a scheduled email.
|
|
25
25
|
# @param body
|
|
26
26
|
# @param [Hash] opts the optional parameters
|
|
27
|
-
# @return [Array<(Array<
|
|
27
|
+
# @return [Array<(Array<InlineResponse20037>, Fixnum, Hash)>] Array<InlineResponse20037> data, response status code and response headers
|
|
28
28
|
def cancel_scheduled(body = {})
|
|
29
29
|
data = @api_client.call_api(:POST, '/messages/cancel-scheduled', body)
|
|
30
30
|
data
|
|
@@ -34,7 +34,7 @@ module MailchimpTransactional
|
|
|
34
34
|
# Get the full content of a recently sent message.
|
|
35
35
|
# @param body
|
|
36
36
|
# @param [Hash] opts the optional parameters
|
|
37
|
-
# @return [Array<(
|
|
37
|
+
# @return [Array<(InlineResponse20035, Fixnum, Hash)>] InlineResponse20035 data, response status code and response headers
|
|
38
38
|
def content(body = {})
|
|
39
39
|
data = @api_client.call_api(:POST, '/messages/content', body)
|
|
40
40
|
data
|
|
@@ -44,7 +44,7 @@ module MailchimpTransactional
|
|
|
44
44
|
# Get the information for a single recently sent message.
|
|
45
45
|
# @param body
|
|
46
46
|
# @param [Hash] opts the optional parameters
|
|
47
|
-
# @return [Array<(
|
|
47
|
+
# @return [Array<(InlineResponse20034, Fixnum, Hash)>] InlineResponse20034 data, response status code and response headers
|
|
48
48
|
def info(body = {})
|
|
49
49
|
data = @api_client.call_api(:POST, '/messages/info', body)
|
|
50
50
|
data
|
|
@@ -54,7 +54,7 @@ module MailchimpTransactional
|
|
|
54
54
|
# Queries your scheduled emails.
|
|
55
55
|
# @param body
|
|
56
56
|
# @param [Hash] opts the optional parameters
|
|
57
|
-
# @return [Array<(Array<
|
|
57
|
+
# @return [Array<(Array<InlineResponse20037>, Fixnum, Hash)>] Array<InlineResponse20037> data, response status code and response headers
|
|
58
58
|
def list_scheduled(body = {})
|
|
59
59
|
data = @api_client.call_api(:POST, '/messages/list-scheduled', body)
|
|
60
60
|
data
|
|
@@ -64,7 +64,7 @@ module MailchimpTransactional
|
|
|
64
64
|
# Parse the full MIME document for an email message, returning the content of the message broken into its constituent pieces.
|
|
65
65
|
# @param body
|
|
66
66
|
# @param [Hash] opts the optional parameters
|
|
67
|
-
# @return [Array<(
|
|
67
|
+
# @return [Array<(InlineResponse20036, Fixnum, Hash)>] InlineResponse20036 data, response status code and response headers
|
|
68
68
|
def parse(body = {})
|
|
69
69
|
data = @api_client.call_api(:POST, '/messages/parse', body)
|
|
70
70
|
data
|
|
@@ -74,7 +74,7 @@ module MailchimpTransactional
|
|
|
74
74
|
# Reschedules a scheduled email.
|
|
75
75
|
# @param body
|
|
76
76
|
# @param [Hash] opts the optional parameters
|
|
77
|
-
# @return [Array<(Array<
|
|
77
|
+
# @return [Array<(Array<InlineResponse20037>, Fixnum, Hash)>] Array<InlineResponse20037> data, response status code and response headers
|
|
78
78
|
def reschedule(body = {})
|
|
79
79
|
data = @api_client.call_api(:POST, '/messages/reschedule', body)
|
|
80
80
|
data
|
|
@@ -84,7 +84,7 @@ module MailchimpTransactional
|
|
|
84
84
|
# Search recently sent messages and optionally narrow by date range, tags, senders, and API keys. If no date range is specified, results within the last 7 days are returned. This method may be called up to 20 times per minute. If you need the data more often, you can use /messages/info.json to get the information for a single message, or webhooks to push activity to your own application for querying.
|
|
85
85
|
# @param body
|
|
86
86
|
# @param [Hash] opts the optional parameters
|
|
87
|
-
# @return [Array<(Array<
|
|
87
|
+
# @return [Array<(Array<InlineResponse20032>, Fixnum, Hash)>] Array<InlineResponse20032> data, response status code and response headers
|
|
88
88
|
def search(body = {})
|
|
89
89
|
data = @api_client.call_api(:POST, '/messages/search', body)
|
|
90
90
|
data
|
|
@@ -94,7 +94,7 @@ module MailchimpTransactional
|
|
|
94
94
|
# Search the content of recently sent messages and return the aggregated hourly stats for matching messages.
|
|
95
95
|
# @param body
|
|
96
96
|
# @param [Hash] opts the optional parameters
|
|
97
|
-
# @return [Array<(Array<
|
|
97
|
+
# @return [Array<(Array<InlineResponse20033>, Fixnum, Hash)>] Array<InlineResponse20033> data, response status code and response headers
|
|
98
98
|
def search_time_series(body = {})
|
|
99
99
|
data = @api_client.call_api(:POST, '/messages/search-time-series', body)
|
|
100
100
|
data
|
|
@@ -104,7 +104,7 @@ module MailchimpTransactional
|
|
|
104
104
|
# Send a new transactional message through the Transactional API.
|
|
105
105
|
# @param body
|
|
106
106
|
# @param [Hash] opts the optional parameters
|
|
107
|
-
# @return [Array<(Array<
|
|
107
|
+
# @return [Array<(Array<InlineResponse20030>, Fixnum, Hash)>] Array<InlineResponse20030> data, response status code and response headers
|
|
108
108
|
def send(body = {})
|
|
109
109
|
data = @api_client.call_api(:POST, '/messages/send', body)
|
|
110
110
|
data
|
|
@@ -114,17 +114,27 @@ module MailchimpTransactional
|
|
|
114
114
|
# Take a raw MIME document for a message, and send it exactly as if it were sent through the Transactional API's SMTP servers.
|
|
115
115
|
# @param body
|
|
116
116
|
# @param [Hash] opts the optional parameters
|
|
117
|
-
# @return [Array<(
|
|
117
|
+
# @return [Array<(Array<InlineResponse20030>, Fixnum, Hash)>] Array<InlineResponse20030> data, response status code and response headers
|
|
118
118
|
def send_raw(body = {})
|
|
119
119
|
data = @api_client.call_api(:POST, '/messages/send-raw', body)
|
|
120
120
|
data
|
|
121
121
|
end
|
|
122
122
|
|
|
123
|
+
# Send SMS message
|
|
124
|
+
# Send a new SMS message through Mandrill
|
|
125
|
+
# @param body
|
|
126
|
+
# @param [Hash] opts the optional parameters
|
|
127
|
+
# @return [Array<(Array<InlineResponse20029>, Fixnum, Hash)>] Array<InlineResponse20029> data, response status code and response headers
|
|
128
|
+
def send_sms(body = {})
|
|
129
|
+
data = @api_client.call_api(:POST, '/messages/send-sms', body)
|
|
130
|
+
data
|
|
131
|
+
end
|
|
132
|
+
|
|
123
133
|
# Send using message template
|
|
124
134
|
# Send a new transactional message through the Transactional API using a template.
|
|
125
135
|
# @param body
|
|
126
136
|
# @param [Hash] opts the optional parameters
|
|
127
|
-
# @return [Array<(Array<
|
|
137
|
+
# @return [Array<(Array<InlineResponse20031>, Fixnum, Hash)>] Array<InlineResponse20031> data, response status code and response headers
|
|
128
138
|
def send_template(body = {})
|
|
129
139
|
data = @api_client.call_api(:POST, '/messages/send-template', body)
|
|
130
140
|
data
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.1.2
|
|
7
7
|
Contact: apihelp@mailchimp.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.4.12
|
|
@@ -24,7 +24,7 @@ module MailchimpTransactional
|
|
|
24
24
|
# Add a new custom metadata field to be indexed for the account.
|
|
25
25
|
# @param body
|
|
26
26
|
# @param [Hash] opts the optional parameters
|
|
27
|
-
# @return [Array<(
|
|
27
|
+
# @return [Array<(InlineResponse20039, Fixnum, Hash)>] InlineResponse20039 data, response status code and response headers
|
|
28
28
|
def add(body = {})
|
|
29
29
|
data = @api_client.call_api(:POST, '/metadata/add', body)
|
|
30
30
|
data
|
|
@@ -34,7 +34,7 @@ module MailchimpTransactional
|
|
|
34
34
|
# Delete an existing custom metadata field. Deletion isn't instataneous, and /metadata/list will continue to return the field until the asynchronous deletion process is complete.
|
|
35
35
|
# @param body
|
|
36
36
|
# @param [Hash] opts the optional parameters
|
|
37
|
-
# @return [Array<(
|
|
37
|
+
# @return [Array<(InlineResponse20041, Fixnum, Hash)>] InlineResponse20041 data, response status code and response headers
|
|
38
38
|
def delete(body = {})
|
|
39
39
|
data = @api_client.call_api(:POST, '/metadata/delete', body)
|
|
40
40
|
data
|
|
@@ -44,7 +44,7 @@ module MailchimpTransactional
|
|
|
44
44
|
# Get the list of custom metadata fields indexed for the account.
|
|
45
45
|
# @param body
|
|
46
46
|
# @param [Hash] opts the optional parameters
|
|
47
|
-
# @return [Array<(Array<
|
|
47
|
+
# @return [Array<(Array<InlineResponse20038>, Fixnum, Hash)>] Array<InlineResponse20038> data, response status code and response headers
|
|
48
48
|
def list(body = {})
|
|
49
49
|
data = @api_client.call_api(:POST, '/metadata/list', body)
|
|
50
50
|
data
|
|
@@ -54,7 +54,7 @@ module MailchimpTransactional
|
|
|
54
54
|
# Update an existing custom metadata field.
|
|
55
55
|
# @param body
|
|
56
56
|
# @param [Hash] opts the optional parameters
|
|
57
|
-
# @return [Array<(
|
|
57
|
+
# @return [Array<(InlineResponse20040, Fixnum, Hash)>] InlineResponse20040 data, response status code and response headers
|
|
58
58
|
def update(body = {})
|
|
59
59
|
data = @api_client.call_api(:POST, '/metadata/update', body)
|
|
60
60
|
data
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.1.2
|
|
7
7
|
Contact: apihelp@mailchimp.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.4.12
|
|
@@ -24,7 +24,7 @@ module MailchimpTransactional
|
|
|
24
24
|
# Adds an email to your email rejection denylist. Addresses that you add manually will never expire and there is no reputation penalty for removing them from your denylist. Attempting to denylist an address that has been added to the allowlist will have no effect.
|
|
25
25
|
# @param body
|
|
26
26
|
# @param [Hash] opts the optional parameters
|
|
27
|
-
# @return [Array<(
|
|
27
|
+
# @return [Array<(InlineResponse20042, Fixnum, Hash)>] InlineResponse20042 data, response status code and response headers
|
|
28
28
|
def add(body = {})
|
|
29
29
|
data = @api_client.call_api(:POST, '/rejects/add', body)
|
|
30
30
|
data
|
|
@@ -34,7 +34,7 @@ module MailchimpTransactional
|
|
|
34
34
|
# Deletes an email rejection. There is no limit to how many rejections you can remove from your denylist, but keep in mind that each deletion has an affect on your reputation.
|
|
35
35
|
# @param body
|
|
36
36
|
# @param [Hash] opts the optional parameters
|
|
37
|
-
# @return [Array<(
|
|
37
|
+
# @return [Array<(InlineResponse20044, Fixnum, Hash)>] InlineResponse20044 data, response status code and response headers
|
|
38
38
|
def delete(body = {})
|
|
39
39
|
data = @api_client.call_api(:POST, '/rejects/delete', body)
|
|
40
40
|
data
|
|
@@ -44,7 +44,7 @@ module MailchimpTransactional
|
|
|
44
44
|
# Retrieves your email rejection denylist. You can provide an email address to limit the results. Returns up to 1000 results. By default, entries that have expired are excluded from the results; set include_expired to true to include them.
|
|
45
45
|
# @param body
|
|
46
46
|
# @param [Hash] opts the optional parameters
|
|
47
|
-
# @return [Array<(Array<
|
|
47
|
+
# @return [Array<(Array<InlineResponse20043>, Fixnum, Hash)>] Array<InlineResponse20043> data, response status code and response headers
|
|
48
48
|
def list(body = {})
|
|
49
49
|
data = @api_client.call_api(:POST, '/rejects/list', body)
|
|
50
50
|
data
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.1.2
|
|
7
7
|
Contact: apihelp@mailchimp.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.4.12
|
|
@@ -24,7 +24,7 @@ module MailchimpTransactional
|
|
|
24
24
|
# Adds a sender domain to your account. Sender domains are added automatically as you send, but you can use this call to add them ahead of time.
|
|
25
25
|
# @param body
|
|
26
26
|
# @param [Hash] opts the optional parameters
|
|
27
|
-
# @return [Array<(
|
|
27
|
+
# @return [Array<(InlineResponse20047, Fixnum, Hash)>] InlineResponse20047 data, response status code and response headers
|
|
28
28
|
def add_domain(body = {})
|
|
29
29
|
data = @api_client.call_api(:POST, '/senders/add-domain', body)
|
|
30
30
|
data
|
|
@@ -34,7 +34,7 @@ module MailchimpTransactional
|
|
|
34
34
|
# Checks the SPF and DKIM settings for a domain, as well the domain verification. If you haven't already added this domain to your account, it will be added automatically.
|
|
35
35
|
# @param body
|
|
36
36
|
# @param [Hash] opts the optional parameters
|
|
37
|
-
# @return [Array<(
|
|
37
|
+
# @return [Array<(InlineResponse20048, Fixnum, Hash)>] InlineResponse20048 data, response status code and response headers
|
|
38
38
|
def check_domain(body = {})
|
|
39
39
|
data = @api_client.call_api(:POST, '/senders/check-domain', body)
|
|
40
40
|
data
|
|
@@ -44,7 +44,7 @@ module MailchimpTransactional
|
|
|
44
44
|
# Returns the sender domains that have been added to this account.
|
|
45
45
|
# @param body
|
|
46
46
|
# @param [Hash] opts the optional parameters
|
|
47
|
-
# @return [Array<(Array<
|
|
47
|
+
# @return [Array<(Array<InlineResponse20046>, Fixnum, Hash)>] Array<InlineResponse20046> data, response status code and response headers
|
|
48
48
|
def domains(body = {})
|
|
49
49
|
data = @api_client.call_api(:POST, '/senders/domains', body)
|
|
50
50
|
data
|
|
@@ -54,7 +54,7 @@ module MailchimpTransactional
|
|
|
54
54
|
# Return more detailed information about a single sender, including aggregates of recent stats.
|
|
55
55
|
# @param body
|
|
56
56
|
# @param [Hash] opts the optional parameters
|
|
57
|
-
# @return [Array<(
|
|
57
|
+
# @return [Array<(InlineResponse20050, Fixnum, Hash)>] InlineResponse20050 data, response status code and response headers
|
|
58
58
|
def info(body = {})
|
|
59
59
|
data = @api_client.call_api(:POST, '/senders/info', body)
|
|
60
60
|
data
|
|
@@ -64,7 +64,7 @@ module MailchimpTransactional
|
|
|
64
64
|
# Return the senders that have tried to use this account.
|
|
65
65
|
# @param body
|
|
66
66
|
# @param [Hash] opts the optional parameters
|
|
67
|
-
# @return [Array<(Array<
|
|
67
|
+
# @return [Array<(Array<InlineResponse20045>, Fixnum, Hash)>] Array<InlineResponse20045> data, response status code and response headers
|
|
68
68
|
def list(body = {})
|
|
69
69
|
data = @api_client.call_api(:POST, '/senders/list', body)
|
|
70
70
|
data
|
|
@@ -74,7 +74,7 @@ module MailchimpTransactional
|
|
|
74
74
|
# Return the recent history (hourly stats for the last 30 days) for a sender.
|
|
75
75
|
# @param body
|
|
76
76
|
# @param [Hash] opts the optional parameters
|
|
77
|
-
# @return [Array<(Array<
|
|
77
|
+
# @return [Array<(Array<InlineResponse20051>, Fixnum, Hash)>] Array<InlineResponse20051> data, response status code and response headers
|
|
78
78
|
def time_series(body = {})
|
|
79
79
|
data = @api_client.call_api(:POST, '/senders/time-series', body)
|
|
80
80
|
data
|
|
@@ -84,7 +84,7 @@ module MailchimpTransactional
|
|
|
84
84
|
# Sends a verification email in order to verify ownership of a domain. Domain verification is a required step to confirm ownership of a domain. Once a domain has been verified in a Transactional API account, other accounts may not have their messages signed by that domain unless they also verify the domain. This prevents other Transactional API accounts from sending mail signed by your domain.
|
|
85
85
|
# @param body
|
|
86
86
|
# @param [Hash] opts the optional parameters
|
|
87
|
-
# @return [Array<(
|
|
87
|
+
# @return [Array<(InlineResponse20049, Fixnum, Hash)>] InlineResponse20049 data, response status code and response headers
|
|
88
88
|
def verify_domain(body = {})
|
|
89
89
|
data = @api_client.call_api(:POST, '/senders/verify-domain', body)
|
|
90
90
|
data
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.1.2
|
|
7
7
|
Contact: apihelp@mailchimp.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.4.12
|
|
@@ -24,7 +24,7 @@ module MailchimpTransactional
|
|
|
24
24
|
# Add a new subaccount.
|
|
25
25
|
# @param body
|
|
26
26
|
# @param [Hash] opts the optional parameters
|
|
27
|
-
# @return [Array<(
|
|
27
|
+
# @return [Array<(InlineResponse20053, Fixnum, Hash)>] InlineResponse20053 data, response status code and response headers
|
|
28
28
|
def add(body = {})
|
|
29
29
|
data = @api_client.call_api(:POST, '/subaccounts/add', body)
|
|
30
30
|
data
|
|
@@ -34,7 +34,7 @@ module MailchimpTransactional
|
|
|
34
34
|
# Delete an existing subaccount. Any email related to the subaccount will be saved, but stats will be removed and any future sending calls to this subaccount will fail.
|
|
35
35
|
# @param body
|
|
36
36
|
# @param [Hash] opts the optional parameters
|
|
37
|
-
# @return [Array<(
|
|
37
|
+
# @return [Array<(InlineResponse20056, Fixnum, Hash)>] InlineResponse20056 data, response status code and response headers
|
|
38
38
|
def delete(body = {})
|
|
39
39
|
data = @api_client.call_api(:POST, '/subaccounts/delete', body)
|
|
40
40
|
data
|
|
@@ -44,7 +44,7 @@ module MailchimpTransactional
|
|
|
44
44
|
# Given the ID of an existing subaccount, return the data about it.
|
|
45
45
|
# @param body
|
|
46
46
|
# @param [Hash] opts the optional parameters
|
|
47
|
-
# @return [Array<(
|
|
47
|
+
# @return [Array<(InlineResponse20054, Fixnum, Hash)>] InlineResponse20054 data, response status code and response headers
|
|
48
48
|
def info(body = {})
|
|
49
49
|
data = @api_client.call_api(:POST, '/subaccounts/info', body)
|
|
50
50
|
data
|
|
@@ -54,7 +54,7 @@ module MailchimpTransactional
|
|
|
54
54
|
# Get the list of subaccounts defined for the account, optionally filtered by a prefix.
|
|
55
55
|
# @param body
|
|
56
56
|
# @param [Hash] opts the optional parameters
|
|
57
|
-
# @return [Array<(Array<
|
|
57
|
+
# @return [Array<(Array<InlineResponse20052>, Fixnum, Hash)>] Array<InlineResponse20052> data, response status code and response headers
|
|
58
58
|
def list(body = {})
|
|
59
59
|
data = @api_client.call_api(:POST, '/subaccounts/list', body)
|
|
60
60
|
data
|
|
@@ -64,7 +64,7 @@ module MailchimpTransactional
|
|
|
64
64
|
# Pause a subaccount's sending. Any future emails delivered to this subaccount will be queued for a maximum of 3 days until the subaccount is resumed.
|
|
65
65
|
# @param body
|
|
66
66
|
# @param [Hash] opts the optional parameters
|
|
67
|
-
# @return [Array<(
|
|
67
|
+
# @return [Array<(InlineResponse20057, Fixnum, Hash)>] InlineResponse20057 data, response status code and response headers
|
|
68
68
|
def pause(body = {})
|
|
69
69
|
data = @api_client.call_api(:POST, '/subaccounts/pause', body)
|
|
70
70
|
data
|
|
@@ -74,7 +74,7 @@ module MailchimpTransactional
|
|
|
74
74
|
# Resume a paused subaccount's sending.
|
|
75
75
|
# @param body
|
|
76
76
|
# @param [Hash] opts the optional parameters
|
|
77
|
-
# @return [Array<(
|
|
77
|
+
# @return [Array<(InlineResponse20058, Fixnum, Hash)>] InlineResponse20058 data, response status code and response headers
|
|
78
78
|
def resume(body = {})
|
|
79
79
|
data = @api_client.call_api(:POST, '/subaccounts/resume', body)
|
|
80
80
|
data
|
|
@@ -84,7 +84,7 @@ module MailchimpTransactional
|
|
|
84
84
|
# Update an existing subaccount.
|
|
85
85
|
# @param body
|
|
86
86
|
# @param [Hash] opts the optional parameters
|
|
87
|
-
# @return [Array<(
|
|
87
|
+
# @return [Array<(InlineResponse20055, Fixnum, Hash)>] InlineResponse20055 data, response status code and response headers
|
|
88
88
|
def update(body = {})
|
|
89
89
|
data = @api_client.call_api(:POST, '/subaccounts/update', body)
|
|
90
90
|
data
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.1.2
|
|
7
7
|
Contact: apihelp@mailchimp.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.4.12
|
|
@@ -24,7 +24,7 @@ module MailchimpTransactional
|
|
|
24
24
|
# Return the recent history (hourly stats for the last 30 days) for all tags.
|
|
25
25
|
# @param body
|
|
26
26
|
# @param [Hash] opts the optional parameters
|
|
27
|
-
# @return [Array<(Array<
|
|
27
|
+
# @return [Array<(Array<InlineResponse20063>, Fixnum, Hash)>] Array<InlineResponse20063> data, response status code and response headers
|
|
28
28
|
def all_time_series(body = {})
|
|
29
29
|
data = @api_client.call_api(:POST, '/tags/all-time-series', body)
|
|
30
30
|
data
|
|
@@ -34,7 +34,7 @@ module MailchimpTransactional
|
|
|
34
34
|
# Deletes a tag permanently. Deleting a tag removes the tag from any messages that have been sent, and also deletes the tag's stats. There is no way to undo this operation, so use it carefully.
|
|
35
35
|
# @param body
|
|
36
36
|
# @param [Hash] opts the optional parameters
|
|
37
|
-
# @return [Array<(
|
|
37
|
+
# @return [Array<(InlineResponse20060, Fixnum, Hash)>] InlineResponse20060 data, response status code and response headers
|
|
38
38
|
def delete(body = {})
|
|
39
39
|
data = @api_client.call_api(:POST, '/tags/delete', body)
|
|
40
40
|
data
|
|
@@ -44,7 +44,7 @@ module MailchimpTransactional
|
|
|
44
44
|
# Return more detailed information about a single tag, including aggregates of recent stats.
|
|
45
45
|
# @param body
|
|
46
46
|
# @param [Hash] opts the optional parameters
|
|
47
|
-
# @return [Array<(
|
|
47
|
+
# @return [Array<(InlineResponse20061, Fixnum, Hash)>] InlineResponse20061 data, response status code and response headers
|
|
48
48
|
def info(body = {})
|
|
49
49
|
data = @api_client.call_api(:POST, '/tags/info', body)
|
|
50
50
|
data
|
|
@@ -54,7 +54,7 @@ module MailchimpTransactional
|
|
|
54
54
|
# Return all of the user-defined tag information.
|
|
55
55
|
# @param body
|
|
56
56
|
# @param [Hash] opts the optional parameters
|
|
57
|
-
# @return [Array<(Array<
|
|
57
|
+
# @return [Array<(Array<InlineResponse20059>, Fixnum, Hash)>] Array<InlineResponse20059> data, response status code and response headers
|
|
58
58
|
def list(body = {})
|
|
59
59
|
data = @api_client.call_api(:POST, '/tags/list', body)
|
|
60
60
|
data
|
|
@@ -64,7 +64,7 @@ module MailchimpTransactional
|
|
|
64
64
|
# Return the recent history (hourly stats for the last 30 days) for a tag.
|
|
65
65
|
# @param body
|
|
66
66
|
# @param [Hash] opts the optional parameters
|
|
67
|
-
# @return [Array<(Array<
|
|
67
|
+
# @return [Array<(Array<InlineResponse20062>, Fixnum, Hash)>] Array<InlineResponse20062> data, response status code and response headers
|
|
68
68
|
def time_series(body = {})
|
|
69
69
|
data = @api_client.call_api(:POST, '/tags/time-series', body)
|
|
70
70
|
data
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.1.2
|
|
7
7
|
Contact: apihelp@mailchimp.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.4.12
|
|
@@ -24,7 +24,7 @@ module MailchimpTransactional
|
|
|
24
24
|
# Add a new template.
|
|
25
25
|
# @param body
|
|
26
26
|
# @param [Hash] opts the optional parameters
|
|
27
|
-
# @return [Array<(
|
|
27
|
+
# @return [Array<(InlineResponse20064, Fixnum, Hash)>] InlineResponse20064 data, response status code and response headers
|
|
28
28
|
def add(body = {})
|
|
29
29
|
data = @api_client.call_api(:POST, '/templates/add', body)
|
|
30
30
|
data
|
|
@@ -34,7 +34,7 @@ module MailchimpTransactional
|
|
|
34
34
|
# Delete a template.
|
|
35
35
|
# @param body
|
|
36
36
|
# @param [Hash] opts the optional parameters
|
|
37
|
-
# @return [Array<(
|
|
37
|
+
# @return [Array<(InlineResponse20068, Fixnum, Hash)>] InlineResponse20068 data, response status code and response headers
|
|
38
38
|
def delete(body = {})
|
|
39
39
|
data = @api_client.call_api(:POST, '/templates/delete', body)
|
|
40
40
|
data
|
|
@@ -44,7 +44,7 @@ module MailchimpTransactional
|
|
|
44
44
|
# Get the information for an existing template.
|
|
45
45
|
# @param body
|
|
46
46
|
# @param [Hash] opts the optional parameters
|
|
47
|
-
# @return [Array<(
|
|
47
|
+
# @return [Array<(InlineResponse20065, Fixnum, Hash)>] InlineResponse20065 data, response status code and response headers
|
|
48
48
|
def info(body = {})
|
|
49
49
|
data = @api_client.call_api(:POST, '/templates/info', body)
|
|
50
50
|
data
|
|
@@ -54,7 +54,7 @@ module MailchimpTransactional
|
|
|
54
54
|
# Return a list of all the templates available to this user.
|
|
55
55
|
# @param body
|
|
56
56
|
# @param [Hash] opts the optional parameters
|
|
57
|
-
# @return [Array<(Array<
|
|
57
|
+
# @return [Array<(Array<InlineResponse20069>, Fixnum, Hash)>] Array<InlineResponse20069> data, response status code and response headers
|
|
58
58
|
def list(body = {})
|
|
59
59
|
data = @api_client.call_api(:POST, '/templates/list', body)
|
|
60
60
|
data
|
|
@@ -64,7 +64,7 @@ module MailchimpTransactional
|
|
|
64
64
|
# Publish the content for the template. Any new messages sent using this template will start using the content that was previously in draft.
|
|
65
65
|
# @param body
|
|
66
66
|
# @param [Hash] opts the optional parameters
|
|
67
|
-
# @return [Array<(
|
|
67
|
+
# @return [Array<(InlineResponse20067, Fixnum, Hash)>] InlineResponse20067 data, response status code and response headers
|
|
68
68
|
def publish(body = {})
|
|
69
69
|
data = @api_client.call_api(:POST, '/templates/publish', body)
|
|
70
70
|
data
|
|
@@ -74,7 +74,7 @@ module MailchimpTransactional
|
|
|
74
74
|
# Inject content and optionally merge fields into a template, returning the HTML that results.
|
|
75
75
|
# @param body
|
|
76
76
|
# @param [Hash] opts the optional parameters
|
|
77
|
-
# @return [Array<(
|
|
77
|
+
# @return [Array<(InlineResponse20071, Fixnum, Hash)>] InlineResponse20071 data, response status code and response headers
|
|
78
78
|
def render(body = {})
|
|
79
79
|
data = @api_client.call_api(:POST, '/templates/render', body)
|
|
80
80
|
data
|
|
@@ -84,7 +84,7 @@ module MailchimpTransactional
|
|
|
84
84
|
# Return the recent history (hourly stats for the last 30 days) for a template.
|
|
85
85
|
# @param body
|
|
86
86
|
# @param [Hash] opts the optional parameters
|
|
87
|
-
# @return [Array<(Array<
|
|
87
|
+
# @return [Array<(Array<InlineResponse20070>, Fixnum, Hash)>] Array<InlineResponse20070> data, response status code and response headers
|
|
88
88
|
def time_series(body = {})
|
|
89
89
|
data = @api_client.call_api(:POST, '/templates/time-series', body)
|
|
90
90
|
data
|
|
@@ -94,7 +94,7 @@ module MailchimpTransactional
|
|
|
94
94
|
# Update the code for an existing template. If null is provided for any fields, the values will remain unchanged.
|
|
95
95
|
# @param body
|
|
96
96
|
# @param [Hash] opts the optional parameters
|
|
97
|
-
# @return [Array<(
|
|
97
|
+
# @return [Array<(InlineResponse20066, Fixnum, Hash)>] InlineResponse20066 data, response status code and response headers
|
|
98
98
|
def update(body = {})
|
|
99
99
|
data = @api_client.call_api(:POST, '/templates/update', body)
|
|
100
100
|
data
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.1.2
|
|
7
7
|
Contact: apihelp@mailchimp.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.4.12
|
|
@@ -24,7 +24,7 @@ module MailchimpTransactional
|
|
|
24
24
|
# Add a tracking domain to your account.
|
|
25
25
|
# @param body
|
|
26
26
|
# @param [Hash] opts the optional parameters
|
|
27
|
-
# @return [Array<(
|
|
27
|
+
# @return [Array<(InlineResponse20076, Fixnum, Hash)>] InlineResponse20076 data, response status code and response headers
|
|
28
28
|
def add_tracking_domain(body = {})
|
|
29
29
|
data = @api_client.call_api(:POST, '/urls/add-tracking-domain', body)
|
|
30
30
|
data
|
|
@@ -34,7 +34,7 @@ module MailchimpTransactional
|
|
|
34
34
|
# Checks the CNAME settings for a tracking domain. The domain must have been added already with the add-tracking-domain call.
|
|
35
35
|
# @param body
|
|
36
36
|
# @param [Hash] opts the optional parameters
|
|
37
|
-
# @return [Array<(
|
|
37
|
+
# @return [Array<(InlineResponse20077, Fixnum, Hash)>] InlineResponse20077 data, response status code and response headers
|
|
38
38
|
def check_tracking_domain(body = {})
|
|
39
39
|
data = @api_client.call_api(:POST, '/urls/check-tracking-domain', body)
|
|
40
40
|
data
|
|
@@ -44,7 +44,7 @@ module MailchimpTransactional
|
|
|
44
44
|
# Get the 100 most clicked URLs.
|
|
45
45
|
# @param body
|
|
46
46
|
# @param [Hash] opts the optional parameters
|
|
47
|
-
# @return [Array<(Array<
|
|
47
|
+
# @return [Array<(Array<InlineResponse20072>, Fixnum, Hash)>] Array<InlineResponse20072> data, response status code and response headers
|
|
48
48
|
def list(body = {})
|
|
49
49
|
data = @api_client.call_api(:POST, '/urls/list', body)
|
|
50
50
|
data
|
|
@@ -54,7 +54,7 @@ module MailchimpTransactional
|
|
|
54
54
|
# Return the 100 most clicked URLs that match the search query given.
|
|
55
55
|
# @param body
|
|
56
56
|
# @param [Hash] opts the optional parameters
|
|
57
|
-
# @return [Array<(Array<
|
|
57
|
+
# @return [Array<(Array<InlineResponse20073>, Fixnum, Hash)>] Array<InlineResponse20073> data, response status code and response headers
|
|
58
58
|
def search(body = {})
|
|
59
59
|
data = @api_client.call_api(:POST, '/urls/search', body)
|
|
60
60
|
data
|
|
@@ -64,7 +64,7 @@ module MailchimpTransactional
|
|
|
64
64
|
# Return the recent history (hourly stats for the last 30 days) for a URL
|
|
65
65
|
# @param body
|
|
66
66
|
# @param [Hash] opts the optional parameters
|
|
67
|
-
# @return [Array<(Array<
|
|
67
|
+
# @return [Array<(Array<InlineResponse20074>, Fixnum, Hash)>] Array<InlineResponse20074> data, response status code and response headers
|
|
68
68
|
def time_series(body = {})
|
|
69
69
|
data = @api_client.call_api(:POST, '/urls/time-series', body)
|
|
70
70
|
data
|
|
@@ -74,7 +74,7 @@ module MailchimpTransactional
|
|
|
74
74
|
# Get the list of tracking domains set up for this account.
|
|
75
75
|
# @param body
|
|
76
76
|
# @param [Hash] opts the optional parameters
|
|
77
|
-
# @return [Array<(Array<
|
|
77
|
+
# @return [Array<(Array<InlineResponse20075>, Fixnum, Hash)>] Array<InlineResponse20075> data, response status code and response headers
|
|
78
78
|
def tracking_domains(body = {})
|
|
79
79
|
data = @api_client.call_api(:POST, '/urls/tracking-domains', body)
|
|
80
80
|
data
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.1.2
|
|
7
7
|
Contact: apihelp@mailchimp.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.4.12
|
|
@@ -24,7 +24,7 @@ module MailchimpTransactional
|
|
|
24
24
|
# Return the information about the API-connected user.
|
|
25
25
|
# @param body
|
|
26
26
|
# @param [Hash] opts the optional parameters
|
|
27
|
-
# @return [Array<(
|
|
27
|
+
# @return [Array<(InlineResponse20078, Fixnum, Hash)>] InlineResponse20078 data, response status code and response headers
|
|
28
28
|
def info(body = {})
|
|
29
29
|
data = @api_client.call_api(:POST, '/users/info', body)
|
|
30
30
|
data
|
|
@@ -44,7 +44,7 @@ module MailchimpTransactional
|
|
|
44
44
|
# Validate an API key and respond to a ping (JSON parser version).
|
|
45
45
|
# @param body
|
|
46
46
|
# @param [Hash] opts the optional parameters
|
|
47
|
-
# @return [Array<(
|
|
47
|
+
# @return [Array<(InlineResponse20079, Fixnum, Hash)>] InlineResponse20079 data, response status code and response headers
|
|
48
48
|
def ping2(body = {})
|
|
49
49
|
data = @api_client.call_api(:POST, '/users/ping2', body)
|
|
50
50
|
data
|
|
@@ -54,7 +54,7 @@ module MailchimpTransactional
|
|
|
54
54
|
# Return the senders that have tried to use this account, both verified and unverified.
|
|
55
55
|
# @param body
|
|
56
56
|
# @param [Hash] opts the optional parameters
|
|
57
|
-
# @return [Array<(Array<
|
|
57
|
+
# @return [Array<(Array<InlineResponse20080>, Fixnum, Hash)>] Array<InlineResponse20080> data, response status code and response headers
|
|
58
58
|
def senders(body = {})
|
|
59
59
|
data = @api_client.call_api(:POST, '/users/senders', body)
|
|
60
60
|
data
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.1.2
|
|
7
7
|
Contact: apihelp@mailchimp.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.4.12
|
|
@@ -24,7 +24,7 @@ module MailchimpTransactional
|
|
|
24
24
|
# Add a new webhook.
|
|
25
25
|
# @param body
|
|
26
26
|
# @param [Hash] opts the optional parameters
|
|
27
|
-
# @return [Array<(
|
|
27
|
+
# @return [Array<(InlineResponse20082, Fixnum, Hash)>] InlineResponse20082 data, response status code and response headers
|
|
28
28
|
def add(body = {})
|
|
29
29
|
data = @api_client.call_api(:POST, '/webhooks/add', body)
|
|
30
30
|
data
|
|
@@ -34,7 +34,7 @@ module MailchimpTransactional
|
|
|
34
34
|
# Delete an existing webhook.
|
|
35
35
|
# @param body
|
|
36
36
|
# @param [Hash] opts the optional parameters
|
|
37
|
-
# @return [Array<(
|
|
37
|
+
# @return [Array<(InlineResponse20085, Fixnum, Hash)>] InlineResponse20085 data, response status code and response headers
|
|
38
38
|
def delete(body = {})
|
|
39
39
|
data = @api_client.call_api(:POST, '/webhooks/delete', body)
|
|
40
40
|
data
|
|
@@ -44,7 +44,7 @@ module MailchimpTransactional
|
|
|
44
44
|
# Given the ID of an existing webhook, return the data about it.
|
|
45
45
|
# @param body
|
|
46
46
|
# @param [Hash] opts the optional parameters
|
|
47
|
-
# @return [Array<(
|
|
47
|
+
# @return [Array<(InlineResponse20083, Fixnum, Hash)>] InlineResponse20083 data, response status code and response headers
|
|
48
48
|
def info(body = {})
|
|
49
49
|
data = @api_client.call_api(:POST, '/webhooks/info', body)
|
|
50
50
|
data
|
|
@@ -54,7 +54,7 @@ module MailchimpTransactional
|
|
|
54
54
|
# Get the list of all webhooks defined on the account.
|
|
55
55
|
# @param body
|
|
56
56
|
# @param [Hash] opts the optional parameters
|
|
57
|
-
# @return [Array<(Array<
|
|
57
|
+
# @return [Array<(Array<InlineResponse20081>, Fixnum, Hash)>] Array<InlineResponse20081> data, response status code and response headers
|
|
58
58
|
def list(body = {})
|
|
59
59
|
data = @api_client.call_api(:POST, '/webhooks/list', body)
|
|
60
60
|
data
|
|
@@ -64,7 +64,7 @@ module MailchimpTransactional
|
|
|
64
64
|
# Update an existing webhook.
|
|
65
65
|
# @param body
|
|
66
66
|
# @param [Hash] opts the optional parameters
|
|
67
|
-
# @return [Array<(
|
|
67
|
+
# @return [Array<(InlineResponse20084, Fixnum, Hash)>] InlineResponse20084 data, response status code and response headers
|
|
68
68
|
def update(body = {})
|
|
69
69
|
data = @api_client.call_api(:POST, '/webhooks/update', body)
|
|
70
70
|
data
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.1.2
|
|
7
7
|
Contact: apihelp@mailchimp.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.4.12
|
|
@@ -34,7 +34,7 @@ module MailchimpTransactional
|
|
|
34
34
|
# Removes an email address from the allowlist.
|
|
35
35
|
# @param body
|
|
36
36
|
# @param [Hash] opts the optional parameters
|
|
37
|
-
# @return [Array<(
|
|
37
|
+
# @return [Array<(InlineResponse20087, Fixnum, Hash)>] InlineResponse20087 data, response status code and response headers
|
|
38
38
|
def delete(body = {})
|
|
39
39
|
data = @api_client.call_api(:POST, '/whitelists/delete', body)
|
|
40
40
|
data
|
|
@@ -44,7 +44,7 @@ module MailchimpTransactional
|
|
|
44
44
|
# Retrieves your email rejection allowlist. You can provide an email address or search prefix to limit the results. Returns up to 1000 results.
|
|
45
45
|
# @param body
|
|
46
46
|
# @param [Hash] opts the optional parameters
|
|
47
|
-
# @return [Array<(Array<
|
|
47
|
+
# @return [Array<(Array<InlineResponse20086>, Fixnum, Hash)>] Array<InlineResponse20086> data, response status code and response headers
|
|
48
48
|
def list(body = {})
|
|
49
49
|
data = @api_client.call_api(:POST, '/whitelists/list', body)
|
|
50
50
|
data
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.1.2
|
|
7
7
|
Contact: apihelp@mailchimp.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.4.12
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.1.2
|
|
7
7
|
Contact: apihelp@mailchimp.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.4.12
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.1.2
|
|
7
7
|
Contact: apihelp@mailchimp.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.4.12
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.1.2
|
|
7
7
|
Contact: apihelp@mailchimp.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.4.12
|
|
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.12
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
13
13
|
module MailchimpTransactional
|
|
14
|
-
VERSION = '1.
|
|
14
|
+
VERSION = '1.1.2'
|
|
15
15
|
end
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.
|
|
6
|
+
OpenAPI spec version: 1.1.2
|
|
7
7
|
Contact: apihelp@mailchimp.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
Swagger Codegen version: 2.4.12
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: MailchimpTransactional
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mailchimp
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2025-11-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: excon
|
|
@@ -226,7 +226,7 @@ homepage: https://github.com/mailchimp/mailchimp-client-lib-codegen
|
|
|
226
226
|
licenses:
|
|
227
227
|
- Apache-2.0
|
|
228
228
|
metadata: {}
|
|
229
|
-
post_install_message:
|
|
229
|
+
post_install_message:
|
|
230
230
|
rdoc_options: []
|
|
231
231
|
require_paths:
|
|
232
232
|
- lib
|
|
@@ -242,7 +242,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
242
242
|
version: '0'
|
|
243
243
|
requirements: []
|
|
244
244
|
rubygems_version: 3.0.3.1
|
|
245
|
-
signing_key:
|
|
245
|
+
signing_key:
|
|
246
246
|
specification_version: 4
|
|
247
247
|
summary: Mailchimp Transactional API Ruby Gem
|
|
248
248
|
test_files: []
|