Class: BrevoRuby::MasterAccountApi
- Inherits:
-
Object
- Object
- BrevoRuby::MasterAccountApi
- Defined in:
- lib/brevo-ruby/api/master_account_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#corporate_master_account_get(opts = {}) ⇒ MasterDetailsResponse
Get the details of requested master account This endpoint will provide the details of the master account.
-
#corporate_master_account_get_with_http_info(opts = {}) ⇒ Array<(MasterDetailsResponse, Fixnum, Hash)>
Get the details of requested master account This endpoint will provide the details of the master account.
-
#corporate_sub_account_get(offset, limit, opts = {}) ⇒ SubAccountsResponse
Get the list of all the sub-accounts of the master account.
-
#corporate_sub_account_get_with_http_info(offset, limit, opts = {}) ⇒ Array<(SubAccountsResponse, Fixnum, Hash)>
Get the list of all the sub-accounts of the master account.
-
#corporate_sub_account_id_delete(id, opts = {}) ⇒ nil
Delete a sub-account.
-
#corporate_sub_account_id_delete_with_http_info(id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Delete a sub-account.
-
#corporate_sub_account_id_get(id, opts = {}) ⇒ SubAccountDetailsResponse
Get sub-account details This endpoint will provide the details for the specified sub-account company.
-
#corporate_sub_account_id_get_with_http_info(id, opts = {}) ⇒ Array<(SubAccountDetailsResponse, Fixnum, Hash)>
Get sub-account details This endpoint will provide the details for the specified sub-account company.
-
#corporate_sub_account_id_plan_put(id, update_plan_details, opts = {}) ⇒ nil
Update sub-account plan This endpoint will update the sub-account plan.
-
#corporate_sub_account_id_plan_put_with_http_info(id, update_plan_details, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Update sub-account plan This endpoint will update the sub-account plan.
-
#corporate_sub_account_key_post(create_api_key_request, opts = {}) ⇒ CreateApiKeyResponse
Create an API key for a sub-account This endpoint will generate an API v3 key for a sub account.
-
#corporate_sub_account_key_post_with_http_info(create_api_key_request, opts = {}) ⇒ Array<(CreateApiKeyResponse, Fixnum, Hash)>
Create an API key for a sub-account This endpoint will generate an API v3 key for a sub account.
-
#corporate_sub_account_post(sub_account_create, opts = {}) ⇒ CreateSubAccountResponse
Create a new sub-account under a master account.
-
#corporate_sub_account_post_with_http_info(sub_account_create, opts = {}) ⇒ Array<(CreateSubAccountResponse, Fixnum, Hash)>
Create a new sub-account under a master account.
-
#corporate_sub_account_sso_token_post(sso_token_request, opts = {}) ⇒ GetSsoToken
Generate SSO token to access Brevo This endpoint generates an sso token to authenticate and access a sub-account of the master using the account endpoint account-app.brevo.com/account/login/sub-account/sso/[token], where [token] will be replaced by the actual token.
-
#corporate_sub_account_sso_token_post_with_http_info(sso_token_request, opts = {}) ⇒ Array<(GetSsoToken, Fixnum, Hash)>
Generate SSO token to access Brevo This endpoint generates an sso token to authenticate and access a sub-account of the master using the account endpoint account-app.brevo.com/account/login/sub-account/sso/[token], where [token] will be replaced by the actual token.
-
#get_account_activity(opts = {}) ⇒ GetAccountActivity
Get user activity logs.
-
#get_account_activity_with_http_info(opts = {}) ⇒ Array<(GetAccountActivity, Fixnum, Hash)>
Get user activity logs.
-
#initialize(api_client = ApiClient.default) ⇒ MasterAccountApi
constructor
A new instance of MasterAccountApi.
-
#setUserAgent(user_agent) ⇒ Object
Set custom user_agent if explicitly passed in api default will still remain Swagger-Codegen/#VERSION/ruby.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ MasterAccountApi
Returns a new instance of MasterAccountApi.
19 20 21 |
# File 'lib/brevo-ruby/api/master_account_api.rb', line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/brevo-ruby/api/master_account_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#corporate_master_account_get(opts = {}) ⇒ MasterDetailsResponse
Get the details of requested master account This endpoint will provide the details of the master account.
36 37 38 39 |
# File 'lib/brevo-ruby/api/master_account_api.rb', line 36 def corporate_master_account_get(opts = {}) data, _status_code, _headers = corporate_master_account_get_with_http_info(opts) data end |
#corporate_master_account_get_with_http_info(opts = {}) ⇒ Array<(MasterDetailsResponse, Fixnum, Hash)>
Get the details of requested master account This endpoint will provide the details of the master account.
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'lib/brevo-ruby/api/master_account_api.rb', line 45 def corporate_master_account_get_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: MasterAccountApi.corporate_master_account_get ...' end # resource path local_var_path = '/corporate/masterAccount' # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/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 = ['api-key', 'partner-key'] 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 => 'MasterDetailsResponse') if @api_client.config.debugging @api_client.config.logger.debug "API called: MasterAccountApi#corporate_master_account_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#corporate_sub_account_get(offset, limit, opts = {}) ⇒ SubAccountsResponse
Get the list of all the sub-accounts of the master account. This endpoint will provide the list all the sub-accounts of the master account.
86 87 88 89 |
# File 'lib/brevo-ruby/api/master_account_api.rb', line 86 def corporate_sub_account_get(offset, limit, opts = {}) data, _status_code, _headers = corporate_sub_account_get_with_http_info(offset, limit, opts) data end |
#corporate_sub_account_get_with_http_info(offset, limit, opts = {}) ⇒ Array<(SubAccountsResponse, Fixnum, Hash)>
Get the list of all the sub-accounts of the master account. This endpoint will provide the list all the sub-accounts of the master account.
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
# File 'lib/brevo-ruby/api/master_account_api.rb', line 97 def corporate_sub_account_get_with_http_info(offset, limit, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: MasterAccountApi.corporate_sub_account_get ...' end # verify the required parameter 'offset' is set if @api_client.config.client_side_validation && offset.nil? fail ArgumentError, "Missing the required parameter 'offset' when calling MasterAccountApi.corporate_sub_account_get" end # verify the required parameter 'limit' is set if @api_client.config.client_side_validation && limit.nil? fail ArgumentError, "Missing the required parameter 'limit' when calling MasterAccountApi.corporate_sub_account_get" end # resource path local_var_path = '/corporate/subAccount' # query parameters query_params = {} query_params[:'offset'] = offset query_params[:'limit'] = limit # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/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 = ['api-key', 'partner-key'] 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 => 'SubAccountsResponse') if @api_client.config.debugging @api_client.config.logger.debug "API called: MasterAccountApi#corporate_sub_account_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#corporate_sub_account_id_delete(id, opts = {}) ⇒ nil
Delete a sub-account
146 147 148 149 |
# File 'lib/brevo-ruby/api/master_account_api.rb', line 146 def corporate_sub_account_id_delete(id, opts = {}) corporate_sub_account_id_delete_with_http_info(id, opts) nil end |
#corporate_sub_account_id_delete_with_http_info(id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Delete a sub-account
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
# File 'lib/brevo-ruby/api/master_account_api.rb', line 155 def corporate_sub_account_id_delete_with_http_info(id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: MasterAccountApi.corporate_sub_account_id_delete ...' end # verify the required parameter 'id' is set if @api_client.config.client_side_validation && id.nil? fail ArgumentError, "Missing the required parameter 'id' when calling MasterAccountApi.corporate_sub_account_id_delete" end # resource path local_var_path = '/corporate/subAccount/{id}'.sub('{' + 'id' + '}', 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']) # 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 = ['api-key', 'partner-key'] 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) if @api_client.config.debugging @api_client.config.logger.debug "API called: MasterAccountApi#corporate_sub_account_id_delete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#corporate_sub_account_id_get(id, opts = {}) ⇒ SubAccountDetailsResponse
Get sub-account details This endpoint will provide the details for the specified sub-account company
198 199 200 201 |
# File 'lib/brevo-ruby/api/master_account_api.rb', line 198 def corporate_sub_account_id_get(id, opts = {}) data, _status_code, _headers = corporate_sub_account_id_get_with_http_info(id, opts) data end |
#corporate_sub_account_id_get_with_http_info(id, opts = {}) ⇒ Array<(SubAccountDetailsResponse, Fixnum, Hash)>
Get sub-account details This endpoint will provide the details for the specified sub-account company
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 |
# File 'lib/brevo-ruby/api/master_account_api.rb', line 208 def corporate_sub_account_id_get_with_http_info(id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: MasterAccountApi.corporate_sub_account_id_get ...' end # verify the required parameter 'id' is set if @api_client.config.client_side_validation && id.nil? fail ArgumentError, "Missing the required parameter 'id' when calling MasterAccountApi.corporate_sub_account_id_get" end # resource path local_var_path = '/corporate/subAccount/{id}'.sub('{' + 'id' + '}', 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']) # 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 = ['api-key', 'partner-key'] 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 => 'SubAccountDetailsResponse') if @api_client.config.debugging @api_client.config.logger.debug "API called: MasterAccountApi#corporate_sub_account_id_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#corporate_sub_account_id_plan_put(id, update_plan_details, opts = {}) ⇒ nil
Update sub-account plan This endpoint will update the sub-account plan
253 254 255 256 |
# File 'lib/brevo-ruby/api/master_account_api.rb', line 253 def corporate_sub_account_id_plan_put(id, update_plan_details, opts = {}) corporate_sub_account_id_plan_put_with_http_info(id, update_plan_details, opts) nil end |
#corporate_sub_account_id_plan_put_with_http_info(id, update_plan_details, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Update sub-account plan This endpoint will update the sub-account plan
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 |
# File 'lib/brevo-ruby/api/master_account_api.rb', line 264 def corporate_sub_account_id_plan_put_with_http_info(id, update_plan_details, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: MasterAccountApi.corporate_sub_account_id_plan_put ...' end # verify the required parameter 'id' is set if @api_client.config.client_side_validation && id.nil? fail ArgumentError, "Missing the required parameter 'id' when calling MasterAccountApi.corporate_sub_account_id_plan_put" end # verify the required parameter 'update_plan_details' is set if @api_client.config.client_side_validation && update_plan_details.nil? fail ArgumentError, "Missing the required parameter 'update_plan_details' when calling MasterAccountApi.corporate_sub_account_id_plan_put" end # resource path local_var_path = '/corporate/subAccount/{id}/plan'.sub('{' + 'id' + '}', 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']) # 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(update_plan_details) auth_names = ['api-key', 'partner-key'] data, status_code, headers = @api_client.call_api(:PUT, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names) if @api_client.config.debugging @api_client.config.logger.debug "API called: MasterAccountApi#corporate_sub_account_id_plan_put\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#corporate_sub_account_key_post(create_api_key_request, opts = {}) ⇒ CreateApiKeyResponse
Create an API key for a sub-account This endpoint will generate an API v3 key for a sub account
311 312 313 314 |
# File 'lib/brevo-ruby/api/master_account_api.rb', line 311 def corporate_sub_account_key_post(create_api_key_request, opts = {}) data, _status_code, _headers = corporate_sub_account_key_post_with_http_info(create_api_key_request, opts) data end |
#corporate_sub_account_key_post_with_http_info(create_api_key_request, opts = {}) ⇒ Array<(CreateApiKeyResponse, Fixnum, Hash)>
Create an API key for a sub-account This endpoint will generate an API v3 key for a sub account
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/brevo-ruby/api/master_account_api.rb', line 321 def corporate_sub_account_key_post_with_http_info(create_api_key_request, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: MasterAccountApi.corporate_sub_account_key_post ...' end # verify the required parameter 'create_api_key_request' is set if @api_client.config.client_side_validation && create_api_key_request.nil? fail ArgumentError, "Missing the required parameter 'create_api_key_request' when calling MasterAccountApi.corporate_sub_account_key_post" end # resource path local_var_path = '/corporate/subAccount/key' # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/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(create_api_key_request) auth_names = ['api-key', 'partner-key'] 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 => 'CreateApiKeyResponse') if @api_client.config.debugging @api_client.config.logger.debug "API called: MasterAccountApi#corporate_sub_account_key_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#corporate_sub_account_post(sub_account_create, opts = {}) ⇒ CreateSubAccountResponse
Create a new sub-account under a master account. This endpoint will create a new sub-account under a master account
365 366 367 368 |
# File 'lib/brevo-ruby/api/master_account_api.rb', line 365 def corporate_sub_account_post(sub_account_create, opts = {}) data, _status_code, _headers = corporate_sub_account_post_with_http_info(sub_account_create, opts) data end |
#corporate_sub_account_post_with_http_info(sub_account_create, opts = {}) ⇒ Array<(CreateSubAccountResponse, Fixnum, Hash)>
Create a new sub-account under a master account. This endpoint will create a new sub-account under a master account
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 |
# File 'lib/brevo-ruby/api/master_account_api.rb', line 375 def corporate_sub_account_post_with_http_info(sub_account_create, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: MasterAccountApi.corporate_sub_account_post ...' end # verify the required parameter 'sub_account_create' is set if @api_client.config.client_side_validation && sub_account_create.nil? fail ArgumentError, "Missing the required parameter 'sub_account_create' when calling MasterAccountApi.corporate_sub_account_post" end # resource path local_var_path = '/corporate/subAccount' # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/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(sub_account_create) auth_names = ['api-key', 'partner-key'] 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 => 'CreateSubAccountResponse') if @api_client.config.debugging @api_client.config.logger.debug "API called: MasterAccountApi#corporate_sub_account_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#corporate_sub_account_sso_token_post(sso_token_request, opts = {}) ⇒ GetSsoToken
Generate SSO token to access Brevo This endpoint generates an sso token to authenticate and access a sub-account of the master using the account endpoint account-app.brevo.com/account/login/sub-account/sso/[token], where [token] will be replaced by the actual token.
419 420 421 422 |
# File 'lib/brevo-ruby/api/master_account_api.rb', line 419 def corporate_sub_account_sso_token_post(sso_token_request, opts = {}) data, _status_code, _headers = corporate_sub_account_sso_token_post_with_http_info(sso_token_request, opts) data end |
#corporate_sub_account_sso_token_post_with_http_info(sso_token_request, opts = {}) ⇒ Array<(GetSsoToken, Fixnum, Hash)>
Generate SSO token to access Brevo This endpoint generates an sso token to authenticate and access a sub-account of the master using the account endpoint account-app.brevo.com/account/login/sub-account/sso/[token], where [token] will be replaced by the actual token.
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 |
# File 'lib/brevo-ruby/api/master_account_api.rb', line 429 def corporate_sub_account_sso_token_post_with_http_info(sso_token_request, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: MasterAccountApi.corporate_sub_account_sso_token_post ...' end # verify the required parameter 'sso_token_request' is set if @api_client.config.client_side_validation && sso_token_request.nil? fail ArgumentError, "Missing the required parameter 'sso_token_request' when calling MasterAccountApi.corporate_sub_account_sso_token_post" end # resource path local_var_path = '/corporate/subAccount/ssoToken' # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/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(sso_token_request) auth_names = ['api-key', 'partner-key'] 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 => 'GetSsoToken') if @api_client.config.debugging @api_client.config.logger.debug "API called: MasterAccountApi#corporate_sub_account_sso_token_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_account_activity(opts = {}) ⇒ GetAccountActivity
Get user activity logs
475 476 477 478 |
# File 'lib/brevo-ruby/api/master_account_api.rb', line 475 def get_account_activity(opts = {}) data, _status_code, _headers = get_account_activity_with_http_info(opts) data end |
#get_account_activity_with_http_info(opts = {}) ⇒ Array<(GetAccountActivity, Fixnum, Hash)>
Get user activity logs
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 |
# File 'lib/brevo-ruby/api/master_account_api.rb', line 487 def get_account_activity_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: MasterAccountApi.get_account_activity ...' end if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] > 100 fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling MasterAccountApi.get_account_activity, must be smaller than or equal to 100.' end if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] < 1 fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling MasterAccountApi.get_account_activity, must be greater than or equal to 1.' end # resource path local_var_path = '/organization/activities' # query parameters query_params = {} query_params[:'startDate'] = opts[:'start_date'] if !opts[:'start_date'].nil? query_params[:'endDate'] = opts[:'end_date'] if !opts[:'end_date'].nil? query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].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']) # 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 = ['api-key', 'partner-key'] 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 => 'GetAccountActivity') if @api_client.config.debugging @api_client.config.logger.debug "API called: MasterAccountApi#get_account_activity\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#setUserAgent(user_agent) ⇒ Object
Set custom user_agent if explicitly passed in api default will still remain Swagger-Codegen/#VERSION/ruby
25 26 27 28 29 30 |
# File 'lib/brevo-ruby/api/master_account_api.rb', line 25 def setUserAgent(user_agent) @user_agent = user_agent if user_agent.is_a?(String) && user_agent.downcase.start_with?('brevo_') @api_client.default_headers['User-Agent'] = @user_agent end end |