Class: MailchimpMarketing::ConnectedSitesApi
- Inherits:
-
Object
- Object
- MailchimpMarketing::ConnectedSitesApi
- Defined in:
- lib/MailchimpMarketing/api/connected_sites_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#create(body = {}, opts = {}) ⇒ ConnectedSite
Create a new connected site Create a new Mailchimp connected site.
-
#create_with_http_info(body, opts = {}) ⇒ Array<(ConnectedSite, Fixnum, Hash)>
Create a new connected site Create a new Mailchimp connected site.
-
#get(connected_site_id = {}, opts = {}) ⇒ ConnectedSite
Get information about a specific connected site Get information about a specific connected site.
-
#get_with_http_info(connected_site_id, opts = {}) ⇒ Array<(ConnectedSite, Fixnum, Hash)>
Get information about a specific connected site Get information about a specific connected site.
-
#initialize(api_client) ⇒ ConnectedSitesApi
constructor
A new instance of ConnectedSitesApi.
-
#list(opts = {}) ⇒ ConnectedSites
Get all connected sites Get all connected sites in an account.
-
#list_with_http_info(opts = {}) ⇒ Array<(ConnectedSites, Fixnum, Hash)>
Get all connected sites Get all connected sites in an account.
-
#remove(connected_site_id = {}, opts = {}) ⇒ nil
Delete a connected site Remove a connected site from your Mailchimp account.
-
#remove_with_http_info(connected_site_id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Delete a connected site Remove a connected site from your Mailchimp account.
-
#verify_script_installation(connected_site_id = {}, opts = {}) ⇒ nil
Verify script installation for a connected site Verify that the connected sites script has been installed, either via the script URL or fragment.
-
#verify_script_installation_with_http_info(connected_site_id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Verify script installation for a connected site Verify that the connected sites script has been installed, either via the script URL or fragment.
Constructor Details
#initialize(api_client) ⇒ ConnectedSitesApi
Returns a new instance of ConnectedSitesApi.
19 20 21 |
# File 'lib/MailchimpMarketing/api/connected_sites_api.rb', line 19 def initialize(api_client) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client
17 18 19 |
# File 'lib/MailchimpMarketing/api/connected_sites_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#create(body = {}, opts = {}) ⇒ ConnectedSite
Create a new connected site Create a new Mailchimp connected site.
174 175 176 177 |
# File 'lib/MailchimpMarketing/api/connected_sites_api.rb', line 174 def create(body = {}, opts = {}) data, _status_code, _headers = create_with_http_info(body, opts) data end |
#create_with_http_info(body, opts = {}) ⇒ Array<(ConnectedSite, Fixnum, Hash)>
Create a new connected site Create a new Mailchimp connected site.
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 |
# File 'lib/MailchimpMarketing/api/connected_sites_api.rb', line 184 def create_with_http_info(body, opts = {}) # resource path local_var_path = '/connected-sites' # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/problem+json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(body) auth_names = ['basicAuth'] data, status_code, headers = @api_client.call_api(:POST, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'ConnectedSite') return data, status_code, headers end |
#get(connected_site_id = {}, opts = {}) ⇒ ConnectedSite
Get information about a specific connected site Get information about a specific connected site.
126 127 128 129 |
# File 'lib/MailchimpMarketing/api/connected_sites_api.rb', line 126 def get(connected_site_id = {}, opts = {}) data, _status_code, _headers = get_with_http_info(connected_site_id, opts) data end |
#get_with_http_info(connected_site_id, opts = {}) ⇒ Array<(ConnectedSite, Fixnum, Hash)>
Get information about a specific connected site Get information about a specific connected site.
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 |
# File 'lib/MailchimpMarketing/api/connected_sites_api.rb', line 138 def get_with_http_info(connected_site_id, opts = {}) # resource path local_var_path = '/connected-sites/{connected_site_id}'.sub('{' + 'connected_site_id' + '}', connected_site_id.to_s) # query parameters query_params = {} query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :csv) if !opts[:'fields'].nil? query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :csv) if !opts[:'exclude_fields'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/problem+json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['basicAuth'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'ConnectedSite') return data, status_code, headers end |
#list(opts = {}) ⇒ ConnectedSites
Get all connected sites Get all connected sites in an account.
73 74 75 76 |
# File 'lib/MailchimpMarketing/api/connected_sites_api.rb', line 73 def list(opts = {}) data, _status_code, _headers = list_with_http_info(opts) data end |
#list_with_http_info(opts = {}) ⇒ Array<(ConnectedSites, Fixnum, Hash)>
Get all connected sites Get all connected sites in an account.
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
# File 'lib/MailchimpMarketing/api/connected_sites_api.rb', line 86 def list_with_http_info(opts = {}) # resource path local_var_path = '/connected-sites' # query parameters query_params = {} query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :csv) if !opts[:'fields'].nil? query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :csv) if !opts[:'exclude_fields'].nil? query_params[:'count'] = opts[:'count'] if !opts[:'count'].nil? query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/problem+json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['basicAuth'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'ConnectedSites') return data, status_code, headers end |
#remove(connected_site_id = {}, opts = {}) ⇒ nil
Delete a connected site Remove a connected site from your Mailchimp account.
27 28 29 30 |
# File 'lib/MailchimpMarketing/api/connected_sites_api.rb', line 27 def remove(connected_site_id = {}, opts = {}) remove_with_http_info(connected_site_id, opts) nil end |
#remove_with_http_info(connected_site_id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Delete a connected site Remove a connected site from your Mailchimp account.
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'lib/MailchimpMarketing/api/connected_sites_api.rb', line 37 def remove_with_http_info(connected_site_id, opts = {}) # resource path local_var_path = '/connected-sites/{connected_site_id}'.sub('{' + 'connected_site_id' + '}', connected_site_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/problem+json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['basicAuth'] data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names) return data, status_code, headers end |
#verify_script_installation(connected_site_id = {}, opts = {}) ⇒ nil
Verify script installation for a connected site Verify that the connected sites script has been installed, either via the script URL or fragment.
218 219 220 221 |
# File 'lib/MailchimpMarketing/api/connected_sites_api.rb', line 218 def verify_script_installation(connected_site_id = {}, opts = {}) verify_script_installation_with_http_info(connected_site_id, opts) nil end |
#verify_script_installation_with_http_info(connected_site_id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Verify script installation for a connected site Verify that the connected sites script has been installed, either via the script URL or fragment.
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 |
# File 'lib/MailchimpMarketing/api/connected_sites_api.rb', line 228 def verify_script_installation_with_http_info(connected_site_id, opts = {}) # resource path local_var_path = '/connected-sites/{connected_site_id}/actions/verify-script-installation'.sub('{' + 'connected_site_id' + '}', connected_site_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/problem+json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['basicAuth'] data, status_code, headers = @api_client.call_api(:POST, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names) return data, status_code, headers end |