sib-api-v3-sdk 5.3.0 → 5.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +66 -62
- data/docs/AccountApi.md +3 -3
- data/docs/AddContactToList.md +1 -1
- data/docs/AttributesApi.md +12 -12
- data/docs/ContactsApi.md +110 -47
- data/docs/CreateAttribute.md +1 -1
- data/docs/CreateContact.md +2 -2
- data/docs/CreateDoiContact.md +13 -0
- data/docs/CreateEmailCampaign.md +1 -1
- data/docs/EmailCampaignsApi.md +78 -21
- data/docs/FoldersApi.md +12 -12
- data/docs/GetEmailCampaign.md +1 -0
- data/docs/GetExtendedCampaignOverview.md +1 -0
- data/docs/GetTransacBlockedContactsContacts.md +1 -1
- data/docs/GetTransacEmailsListTransactionalEmails.md +2 -0
- data/docs/ListsApi.md +12 -12
- data/docs/RemainingCreditModelChild.md +2 -2
- data/docs/RemainingCreditModelReseller.md +2 -2
- data/docs/RemoveContactFromList.md +1 -1
- data/docs/RequestContactExport.md +1 -1
- data/docs/RequestContactImport.md +1 -1
- data/docs/ResellerApi.md +30 -30
- data/docs/SMSCampaignsApi.md +21 -21
- data/docs/SMTPApi.md +17 -17
- data/docs/SendEmail.md +3 -3
- data/docs/SendSmtpEmail.md +3 -3
- data/docs/SendersApi.md +6 -6
- data/docs/TransactionalSMSApi.md +6 -6
- data/docs/UpdateAttribute.md +1 -1
- data/docs/UpdateContact.md +1 -1
- data/docs/UpdateEmailCampaign.md +1 -1
- data/docs/UploadImageToGallery.md +9 -0
- data/lib/sib-api-v3-sdk.rb +2 -0
- data/lib/sib-api-v3-sdk/api/account_api.rb +2 -2
- data/lib/sib-api-v3-sdk/api/attributes_api.rb +8 -8
- data/lib/sib-api-v3-sdk/api/contacts_api.rb +87 -30
- data/lib/sib-api-v3-sdk/api/email_campaigns_api.rb +65 -14
- data/lib/sib-api-v3-sdk/api/folders_api.rb +8 -8
- data/lib/sib-api-v3-sdk/api/lists_api.rb +8 -8
- data/lib/sib-api-v3-sdk/api/reseller_api.rb +20 -20
- data/lib/sib-api-v3-sdk/api/senders_api.rb +4 -4
- data/lib/sib-api-v3-sdk/api/sms_campaigns_api.rb +14 -14
- data/lib/sib-api-v3-sdk/api/smtp_api.rb +12 -12
- data/lib/sib-api-v3-sdk/api/transactional_sms_api.rb +4 -4
- data/lib/sib-api-v3-sdk/models/add_contact_to_list.rb +1 -1
- data/lib/sib-api-v3-sdk/models/create_attribute.rb +1 -1
- data/lib/sib-api-v3-sdk/models/create_contact.rb +2 -2
- data/lib/sib-api-v3-sdk/models/create_doi_contact.rb +253 -0
- data/lib/sib-api-v3-sdk/models/create_email_campaign.rb +1 -1
- data/lib/sib-api-v3-sdk/models/get_email_campaign.rb +11 -1
- data/lib/sib-api-v3-sdk/models/get_extended_campaign_overview.rb +14 -4
- data/lib/sib-api-v3-sdk/models/get_transac_blocked_contacts_contacts.rb +1 -1
- data/lib/sib-api-v3-sdk/models/get_transac_emails_list_transactional_emails.rb +26 -4
- data/lib/sib-api-v3-sdk/models/remaining_credit_model_child.rb +2 -2
- data/lib/sib-api-v3-sdk/models/remaining_credit_model_reseller.rb +2 -2
- data/lib/sib-api-v3-sdk/models/remove_contact_from_list.rb +1 -1
- data/lib/sib-api-v3-sdk/models/request_contact_export.rb +1 -1
- data/lib/sib-api-v3-sdk/models/request_contact_import.rb +1 -1
- data/lib/sib-api-v3-sdk/models/send_email.rb +3 -3
- data/lib/sib-api-v3-sdk/models/send_smtp_email.rb +3 -3
- data/lib/sib-api-v3-sdk/models/send_smtp_email_reply_to.rb +1 -1
- data/lib/sib-api-v3-sdk/models/send_smtp_email_sender.rb +1 -1
- data/lib/sib-api-v3-sdk/models/update_attribute.rb +1 -1
- data/lib/sib-api-v3-sdk/models/update_contact.rb +1 -1
- data/lib/sib-api-v3-sdk/models/update_email_campaign.rb +1 -1
- data/lib/sib-api-v3-sdk/models/upload_image_to_gallery.rb +199 -0
- data/lib/sib-api-v3-sdk/version.rb +1 -1
- data/sib-api-v3-sdk.gemspec +5 -5
- data/spec/api/account_api_spec.rb +1 -1
- data/spec/api/attributes_api_spec.rb +4 -4
- data/spec/api/contacts_api_spec.rb +28 -15
- data/spec/api/email_campaigns_api_spec.rb +18 -7
- data/spec/api/folders_api_spec.rb +4 -4
- data/spec/api/lists_api_spec.rb +4 -4
- data/spec/api/reseller_api_spec.rb +10 -10
- data/spec/api/senders_api_spec.rb +2 -2
- data/spec/api/sms_campaigns_api_spec.rb +7 -7
- data/spec/api/smtp_api_spec.rb +6 -6
- data/spec/api/transactional_sms_api_spec.rb +2 -2
- data/spec/models/create_doi_contact_spec.rb +71 -0
- data/spec/models/get_email_campaign_spec.rb +6 -0
- data/spec/models/get_extended_campaign_overview_spec.rb +6 -0
- data/spec/models/get_transac_emails_list_transactional_emails_spec.rb +12 -0
- data/spec/models/upload_image_to_gallery_spec.rb +47 -0
- metadata +10 -2
@@ -122,7 +122,7 @@ module SibApiV3Sdk
|
|
122
122
|
end
|
123
123
|
return data, status_code, headers
|
124
124
|
end
|
125
|
-
# Export the recipients of
|
125
|
+
# Export the recipients of an email campaign
|
126
126
|
# @param campaign_id Id of the campaign
|
127
127
|
# @param [Hash] opts the optional parameters
|
128
128
|
# @option opts [EmailExportRecipients] :recipient_export Values to send for a recipient export request
|
@@ -132,7 +132,7 @@ module SibApiV3Sdk
|
|
132
132
|
data
|
133
133
|
end
|
134
134
|
|
135
|
-
# Export the recipients of
|
135
|
+
# Export the recipients of an email campaign
|
136
136
|
# @param campaign_id Id of the campaign
|
137
137
|
# @param [Hash] opts the optional parameters
|
138
138
|
# @option opts [EmailExportRecipients] :recipient_export Values to send for a recipient export request
|
@@ -176,7 +176,7 @@ module SibApiV3Sdk
|
|
176
176
|
end
|
177
177
|
return data, status_code, headers
|
178
178
|
end
|
179
|
-
# Get A/B test email campaign
|
179
|
+
# Get an A/B test email campaign results
|
180
180
|
# Obtain winning version of an A/B test email campaign
|
181
181
|
# @param campaign_id Id of the A/B test campaign
|
182
182
|
# @param [Hash] opts the optional parameters
|
@@ -186,7 +186,7 @@ module SibApiV3Sdk
|
|
186
186
|
data
|
187
187
|
end
|
188
188
|
|
189
|
-
# Get A/B test email campaign
|
189
|
+
# Get an A/B test email campaign results
|
190
190
|
# Obtain winning version of an A/B test email campaign
|
191
191
|
# @param campaign_id Id of the A/B test campaign
|
192
192
|
# @param [Hash] opts the optional parameters
|
@@ -230,7 +230,7 @@ module SibApiV3Sdk
|
|
230
230
|
end
|
231
231
|
return data, status_code, headers
|
232
232
|
end
|
233
|
-
# Get campaign
|
233
|
+
# Get an email campaign report
|
234
234
|
# @param campaign_id Id of the campaign
|
235
235
|
# @param [Hash] opts the optional parameters
|
236
236
|
# @return [GetEmailCampaign]
|
@@ -239,7 +239,7 @@ module SibApiV3Sdk
|
|
239
239
|
data
|
240
240
|
end
|
241
241
|
|
242
|
-
# Get campaign
|
242
|
+
# Get an email campaign report
|
243
243
|
# @param campaign_id Id of the campaign
|
244
244
|
# @param [Hash] opts the optional parameters
|
245
245
|
# @return [Array<(GetEmailCampaign, Fixnum, Hash)>] GetEmailCampaign data, response status code and response headers
|
@@ -282,7 +282,7 @@ module SibApiV3Sdk
|
|
282
282
|
end
|
283
283
|
return data, status_code, headers
|
284
284
|
end
|
285
|
-
# Return all your created campaigns
|
285
|
+
# Return all your created email campaigns
|
286
286
|
# @param [Hash] opts the optional parameters
|
287
287
|
# @option opts [String] :type Filter on the type of the campaigns
|
288
288
|
# @option opts [String] :status Filter on the status of the campaign
|
@@ -296,7 +296,7 @@ module SibApiV3Sdk
|
|
296
296
|
data
|
297
297
|
end
|
298
298
|
|
299
|
-
# Return all your created campaigns
|
299
|
+
# Return all your created email campaigns
|
300
300
|
# @param [Hash] opts the optional parameters
|
301
301
|
# @option opts [String] :type Filter on the type of the campaigns
|
302
302
|
# @option opts [String] :status Filter on the status of the campaign
|
@@ -461,7 +461,7 @@ module SibApiV3Sdk
|
|
461
461
|
end
|
462
462
|
return data, status_code, headers
|
463
463
|
end
|
464
|
-
# Send the report of a
|
464
|
+
# Send the report of a campaign
|
465
465
|
# A PDF will be sent to the specified email addresses
|
466
466
|
# @param campaign_id Id of the campaign
|
467
467
|
# @param send_report Values for send a report
|
@@ -472,7 +472,7 @@ module SibApiV3Sdk
|
|
472
472
|
nil
|
473
473
|
end
|
474
474
|
|
475
|
-
# Send the report of a
|
475
|
+
# Send the report of a campaign
|
476
476
|
# A PDF will be sent to the specified email addresses
|
477
477
|
# @param campaign_id Id of the campaign
|
478
478
|
# @param send_report Values for send a report
|
@@ -577,7 +577,7 @@ module SibApiV3Sdk
|
|
577
577
|
end
|
578
578
|
return data, status_code, headers
|
579
579
|
end
|
580
|
-
# Update
|
580
|
+
# Update an email campaign status
|
581
581
|
# @param campaign_id Id of the campaign
|
582
582
|
# @param status Status of the campaign
|
583
583
|
# @param [Hash] opts the optional parameters
|
@@ -587,7 +587,7 @@ module SibApiV3Sdk
|
|
587
587
|
nil
|
588
588
|
end
|
589
589
|
|
590
|
-
# Update
|
590
|
+
# Update an email campaign status
|
591
591
|
# @param campaign_id Id of the campaign
|
592
592
|
# @param status Status of the campaign
|
593
593
|
# @param [Hash] opts the optional parameters
|
@@ -634,7 +634,7 @@ module SibApiV3Sdk
|
|
634
634
|
end
|
635
635
|
return data, status_code, headers
|
636
636
|
end
|
637
|
-
# Update
|
637
|
+
# Update an email campaign
|
638
638
|
# @param campaign_id Id of the campaign
|
639
639
|
# @param email_campaign Values to update a campaign
|
640
640
|
# @param [Hash] opts the optional parameters
|
@@ -644,7 +644,7 @@ module SibApiV3Sdk
|
|
644
644
|
nil
|
645
645
|
end
|
646
646
|
|
647
|
-
# Update
|
647
|
+
# Update an email campaign
|
648
648
|
# @param campaign_id Id of the campaign
|
649
649
|
# @param email_campaign Values to update a campaign
|
650
650
|
# @param [Hash] opts the optional parameters
|
@@ -691,5 +691,56 @@ module SibApiV3Sdk
|
|
691
691
|
end
|
692
692
|
return data, status_code, headers
|
693
693
|
end
|
694
|
+
# Upload an image to your account's image gallery
|
695
|
+
# @param upload_image Parameters to upload an image
|
696
|
+
# @param [Hash] opts the optional parameters
|
697
|
+
# @return [nil]
|
698
|
+
def upload_image_to_gallery(upload_image, opts = {})
|
699
|
+
upload_image_to_gallery_with_http_info(upload_image, opts)
|
700
|
+
nil
|
701
|
+
end
|
702
|
+
|
703
|
+
# Upload an image to your account's image gallery
|
704
|
+
# @param upload_image Parameters to upload an image
|
705
|
+
# @param [Hash] opts the optional parameters
|
706
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
707
|
+
def upload_image_to_gallery_with_http_info(upload_image, opts = {})
|
708
|
+
if @api_client.config.debugging
|
709
|
+
@api_client.config.logger.debug 'Calling API: EmailCampaignsApi.upload_image_to_gallery ...'
|
710
|
+
end
|
711
|
+
# verify the required parameter 'upload_image' is set
|
712
|
+
if @api_client.config.client_side_validation && upload_image.nil?
|
713
|
+
fail ArgumentError, "Missing the required parameter 'upload_image' when calling EmailCampaignsApi.upload_image_to_gallery"
|
714
|
+
end
|
715
|
+
# resource path
|
716
|
+
local_var_path = '/emailCampaigns/images'
|
717
|
+
|
718
|
+
# query parameters
|
719
|
+
query_params = {}
|
720
|
+
|
721
|
+
# header parameters
|
722
|
+
header_params = {}
|
723
|
+
# HTTP header 'Accept' (if needed)
|
724
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
725
|
+
# HTTP header 'Content-Type'
|
726
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
727
|
+
|
728
|
+
# form parameters
|
729
|
+
form_params = {}
|
730
|
+
|
731
|
+
# http body (model)
|
732
|
+
post_body = @api_client.object_to_http_body(upload_image)
|
733
|
+
auth_names = ['api-key', 'partner-key']
|
734
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
735
|
+
:header_params => header_params,
|
736
|
+
:query_params => query_params,
|
737
|
+
:form_params => form_params,
|
738
|
+
:body => post_body,
|
739
|
+
:auth_names => auth_names)
|
740
|
+
if @api_client.config.debugging
|
741
|
+
@api_client.config.logger.debug "API called: EmailCampaignsApi#upload_image_to_gallery\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
742
|
+
end
|
743
|
+
return data, status_code, headers
|
744
|
+
end
|
694
745
|
end
|
695
746
|
end
|
@@ -122,7 +122,7 @@ module SibApiV3Sdk
|
|
122
122
|
end
|
123
123
|
return data, status_code, headers
|
124
124
|
end
|
125
|
-
# Returns folder details
|
125
|
+
# Returns a folder's details
|
126
126
|
# @param folder_id id of the folder
|
127
127
|
# @param [Hash] opts the optional parameters
|
128
128
|
# @return [GetFolder]
|
@@ -131,7 +131,7 @@ module SibApiV3Sdk
|
|
131
131
|
data
|
132
132
|
end
|
133
133
|
|
134
|
-
# Returns folder details
|
134
|
+
# Returns a folder's details
|
135
135
|
# @param folder_id id of the folder
|
136
136
|
# @param [Hash] opts the optional parameters
|
137
137
|
# @return [Array<(GetFolder, Fixnum, Hash)>] GetFolder data, response status code and response headers
|
@@ -174,7 +174,7 @@ module SibApiV3Sdk
|
|
174
174
|
end
|
175
175
|
return data, status_code, headers
|
176
176
|
end
|
177
|
-
# Get
|
177
|
+
# Get lists in a folder
|
178
178
|
# @param folder_id Id of the folder
|
179
179
|
# @param [Hash] opts the optional parameters
|
180
180
|
# @option opts [Integer] :limit Number of documents per page (default to 10)
|
@@ -185,7 +185,7 @@ module SibApiV3Sdk
|
|
185
185
|
data
|
186
186
|
end
|
187
187
|
|
188
|
-
# Get
|
188
|
+
# Get lists in a folder
|
189
189
|
# @param folder_id Id of the folder
|
190
190
|
# @param [Hash] opts the optional parameters
|
191
191
|
# @option opts [Integer] :limit Number of documents per page
|
@@ -236,7 +236,7 @@ module SibApiV3Sdk
|
|
236
236
|
end
|
237
237
|
return data, status_code, headers
|
238
238
|
end
|
239
|
-
# Get all
|
239
|
+
# Get all folders
|
240
240
|
# @param limit Number of documents per page
|
241
241
|
# @param offset Index of the first document of the page
|
242
242
|
# @param [Hash] opts the optional parameters
|
@@ -246,7 +246,7 @@ module SibApiV3Sdk
|
|
246
246
|
data
|
247
247
|
end
|
248
248
|
|
249
|
-
# Get all
|
249
|
+
# Get all folders
|
250
250
|
# @param limit Number of documents per page
|
251
251
|
# @param offset Index of the first document of the page
|
252
252
|
# @param [Hash] opts the optional parameters
|
@@ -300,7 +300,7 @@ module SibApiV3Sdk
|
|
300
300
|
end
|
301
301
|
return data, status_code, headers
|
302
302
|
end
|
303
|
-
# Update a
|
303
|
+
# Update a folder
|
304
304
|
# @param folder_id Id of the folder
|
305
305
|
# @param update_folder Name of the folder
|
306
306
|
# @param [Hash] opts the optional parameters
|
@@ -310,7 +310,7 @@ module SibApiV3Sdk
|
|
310
310
|
nil
|
311
311
|
end
|
312
312
|
|
313
|
-
# Update a
|
313
|
+
# Update a folder
|
314
314
|
# @param folder_id Id of the folder
|
315
315
|
# @param update_folder Name of the folder
|
316
316
|
# @param [Hash] opts the optional parameters
|
@@ -180,7 +180,7 @@ module SibApiV3Sdk
|
|
180
180
|
end
|
181
181
|
return data, status_code, headers
|
182
182
|
end
|
183
|
-
# Get
|
183
|
+
# Get contacts in a list
|
184
184
|
# @param list_id Id of the list
|
185
185
|
# @param [Hash] opts the optional parameters
|
186
186
|
# @option opts [DateTime] :modified_since Filter (urlencoded) the contacts modified after a given UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ). Prefer to pass your timezone in date-time format for accurate result.
|
@@ -192,7 +192,7 @@ module SibApiV3Sdk
|
|
192
192
|
data
|
193
193
|
end
|
194
194
|
|
195
|
-
# Get
|
195
|
+
# Get contacts in a list
|
196
196
|
# @param list_id Id of the list
|
197
197
|
# @param [Hash] opts the optional parameters
|
198
198
|
# @option opts [DateTime] :modified_since Filter (urlencoded) the contacts modified after a given UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ). Prefer to pass your timezone in date-time format for accurate result.
|
@@ -245,7 +245,7 @@ module SibApiV3Sdk
|
|
245
245
|
end
|
246
246
|
return data, status_code, headers
|
247
247
|
end
|
248
|
-
# Get
|
248
|
+
# Get lists in a folder
|
249
249
|
# @param folder_id Id of the folder
|
250
250
|
# @param [Hash] opts the optional parameters
|
251
251
|
# @option opts [Integer] :limit Number of documents per page (default to 10)
|
@@ -256,7 +256,7 @@ module SibApiV3Sdk
|
|
256
256
|
data
|
257
257
|
end
|
258
258
|
|
259
|
-
# Get
|
259
|
+
# Get lists in a folder
|
260
260
|
# @param folder_id Id of the folder
|
261
261
|
# @param [Hash] opts the optional parameters
|
262
262
|
# @option opts [Integer] :limit Number of documents per page
|
@@ -307,7 +307,7 @@ module SibApiV3Sdk
|
|
307
307
|
end
|
308
308
|
return data, status_code, headers
|
309
309
|
end
|
310
|
-
# Get
|
310
|
+
# Get a list's details
|
311
311
|
# @param list_id Id of the list
|
312
312
|
# @param [Hash] opts the optional parameters
|
313
313
|
# @return [GetExtendedList]
|
@@ -316,7 +316,7 @@ module SibApiV3Sdk
|
|
316
316
|
data
|
317
317
|
end
|
318
318
|
|
319
|
-
# Get
|
319
|
+
# Get a list's details
|
320
320
|
# @param list_id Id of the list
|
321
321
|
# @param [Hash] opts the optional parameters
|
322
322
|
# @return [Array<(GetExtendedList, Fixnum, Hash)>] GetExtendedList data, response status code and response headers
|
@@ -415,7 +415,7 @@ module SibApiV3Sdk
|
|
415
415
|
end
|
416
416
|
return data, status_code, headers
|
417
417
|
end
|
418
|
-
#
|
418
|
+
# Delete a contact from a list
|
419
419
|
# @param list_id Id of the list
|
420
420
|
# @param contact_emails Emails adresses of the contact
|
421
421
|
# @param [Hash] opts the optional parameters
|
@@ -425,7 +425,7 @@ module SibApiV3Sdk
|
|
425
425
|
data
|
426
426
|
end
|
427
427
|
|
428
|
-
#
|
428
|
+
# Delete a contact from a list
|
429
429
|
# @param list_id Id of the list
|
430
430
|
# @param contact_emails Emails adresses of the contact
|
431
431
|
# @param [Hash] opts the optional parameters
|
@@ -134,7 +134,7 @@ module SibApiV3Sdk
|
|
134
134
|
end
|
135
135
|
return data, status_code, headers
|
136
136
|
end
|
137
|
-
#
|
137
|
+
# Create a domain for a child account
|
138
138
|
# @param child_auth_key auth key of reseller's child
|
139
139
|
# @param add_child_domain Sender domain to add for a specific child account. This will not be displayed to the parent account.
|
140
140
|
# @param [Hash] opts the optional parameters
|
@@ -144,7 +144,7 @@ module SibApiV3Sdk
|
|
144
144
|
nil
|
145
145
|
end
|
146
146
|
|
147
|
-
#
|
147
|
+
# Create a domain for a child account
|
148
148
|
# @param child_auth_key auth key of reseller's child
|
149
149
|
# @param add_child_domain Sender domain to add for a specific child account. This will not be displayed to the parent account.
|
150
150
|
# @param [Hash] opts the optional parameters
|
@@ -239,7 +239,7 @@ module SibApiV3Sdk
|
|
239
239
|
end
|
240
240
|
return data, status_code, headers
|
241
241
|
end
|
242
|
-
#
|
242
|
+
# Delete the sender domain of the reseller child based on the childAuthKey and domainName passed
|
243
243
|
# @param child_auth_key auth key of reseller's child
|
244
244
|
# @param domain_name Pass the existing domain that needs to be deleted
|
245
245
|
# @param [Hash] opts the optional parameters
|
@@ -249,7 +249,7 @@ module SibApiV3Sdk
|
|
249
249
|
nil
|
250
250
|
end
|
251
251
|
|
252
|
-
#
|
252
|
+
# Delete the sender domain of the reseller child based on the childAuthKey and domainName passed
|
253
253
|
# @param child_auth_key auth key of reseller's child
|
254
254
|
# @param domain_name Pass the existing domain that needs to be deleted
|
255
255
|
# @param [Hash] opts the optional parameters
|
@@ -296,7 +296,7 @@ module SibApiV3Sdk
|
|
296
296
|
end
|
297
297
|
return data, status_code, headers
|
298
298
|
end
|
299
|
-
#
|
299
|
+
# Delete a single reseller child based on the childAuthKey supplied
|
300
300
|
# @param child_auth_key auth key of reseller's child
|
301
301
|
# @param [Hash] opts the optional parameters
|
302
302
|
# @return [nil]
|
@@ -305,7 +305,7 @@ module SibApiV3Sdk
|
|
305
305
|
nil
|
306
306
|
end
|
307
307
|
|
308
|
-
#
|
308
|
+
# Delete a single reseller child based on the childAuthKey supplied
|
309
309
|
# @param child_auth_key auth key of reseller's child
|
310
310
|
# @param [Hash] opts the optional parameters
|
311
311
|
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
@@ -404,7 +404,7 @@ module SibApiV3Sdk
|
|
404
404
|
end
|
405
405
|
return data, status_code, headers
|
406
406
|
end
|
407
|
-
#
|
407
|
+
# Get the status of a reseller's child account creation, whether it is successfully created (exists) or not based on the childAuthKey supplied
|
408
408
|
# @param child_auth_key auth key of reseller's child
|
409
409
|
# @param [Hash] opts the optional parameters
|
410
410
|
# @return [GetChildAccountCreationStatus]
|
@@ -413,7 +413,7 @@ module SibApiV3Sdk
|
|
413
413
|
data
|
414
414
|
end
|
415
415
|
|
416
|
-
#
|
416
|
+
# Get the status of a reseller's child account creation, whether it is successfully created (exists) or not based on the childAuthKey supplied
|
417
417
|
# @param child_auth_key auth key of reseller's child
|
418
418
|
# @param [Hash] opts the optional parameters
|
419
419
|
# @return [Array<(GetChildAccountCreationStatus, Fixnum, Hash)>] GetChildAccountCreationStatus data, response status code and response headers
|
@@ -456,7 +456,7 @@ module SibApiV3Sdk
|
|
456
456
|
end
|
457
457
|
return data, status_code, headers
|
458
458
|
end
|
459
|
-
#
|
459
|
+
# Get all sender domains for a specific child account
|
460
460
|
# @param child_auth_key auth key of reseller's child
|
461
461
|
# @param [Hash] opts the optional parameters
|
462
462
|
# @return [GetChildDomains]
|
@@ -465,7 +465,7 @@ module SibApiV3Sdk
|
|
465
465
|
data
|
466
466
|
end
|
467
467
|
|
468
|
-
#
|
468
|
+
# Get all sender domains for a specific child account
|
469
469
|
# @param child_auth_key auth key of reseller's child
|
470
470
|
# @param [Hash] opts the optional parameters
|
471
471
|
# @return [Array<(GetChildDomains, Fixnum, Hash)>] GetChildDomains data, response status code and response headers
|
@@ -508,7 +508,7 @@ module SibApiV3Sdk
|
|
508
508
|
end
|
509
509
|
return data, status_code, headers
|
510
510
|
end
|
511
|
-
#
|
511
|
+
# Get a child account's details
|
512
512
|
# @param child_auth_key auth key of reseller's child
|
513
513
|
# @param [Hash] opts the optional parameters
|
514
514
|
# @return [GetChildInfo]
|
@@ -517,7 +517,7 @@ module SibApiV3Sdk
|
|
517
517
|
data
|
518
518
|
end
|
519
519
|
|
520
|
-
#
|
520
|
+
# Get a child account's details
|
521
521
|
# @param child_auth_key auth key of reseller's child
|
522
522
|
# @param [Hash] opts the optional parameters
|
523
523
|
# @return [Array<(GetChildInfo, Fixnum, Hash)>] GetChildInfo data, response status code and response headers
|
@@ -560,7 +560,7 @@ module SibApiV3Sdk
|
|
560
560
|
end
|
561
561
|
return data, status_code, headers
|
562
562
|
end
|
563
|
-
#
|
563
|
+
# Get the list of all children accounts
|
564
564
|
# @param [Hash] opts the optional parameters
|
565
565
|
# @option opts [Integer] :limit Number of documents for child accounts information per page (default to 10)
|
566
566
|
# @option opts [Integer] :offset Index of the first document in the page (default to 0)
|
@@ -570,7 +570,7 @@ module SibApiV3Sdk
|
|
570
570
|
data
|
571
571
|
end
|
572
572
|
|
573
|
-
#
|
573
|
+
# Get the list of all children accounts
|
574
574
|
# @param [Hash] opts the optional parameters
|
575
575
|
# @option opts [Integer] :limit Number of documents for child accounts information per page
|
576
576
|
# @option opts [Integer] :offset Index of the first document in the page
|
@@ -728,7 +728,7 @@ module SibApiV3Sdk
|
|
728
728
|
end
|
729
729
|
return data, status_code, headers
|
730
730
|
end
|
731
|
-
#
|
731
|
+
# Update info of reseller's child account status based on the childAuthKey supplied
|
732
732
|
# @param child_auth_key auth key of reseller's child
|
733
733
|
# @param update_child_account_status values to update in child account status
|
734
734
|
# @param [Hash] opts the optional parameters
|
@@ -738,7 +738,7 @@ module SibApiV3Sdk
|
|
738
738
|
nil
|
739
739
|
end
|
740
740
|
|
741
|
-
#
|
741
|
+
# Update info of reseller's child account status based on the childAuthKey supplied
|
742
742
|
# @param child_auth_key auth key of reseller's child
|
743
743
|
# @param update_child_account_status values to update in child account status
|
744
744
|
# @param [Hash] opts the optional parameters
|
@@ -785,7 +785,7 @@ module SibApiV3Sdk
|
|
785
785
|
end
|
786
786
|
return data, status_code, headers
|
787
787
|
end
|
788
|
-
#
|
788
|
+
# Update the sender domain of reseller's child based on the childAuthKey and domainName passed
|
789
789
|
# @param child_auth_key auth key of reseller's child
|
790
790
|
# @param domain_name Pass the existing domain that needs to be updated
|
791
791
|
# @param update_child_domain value to update for sender domain
|
@@ -796,7 +796,7 @@ module SibApiV3Sdk
|
|
796
796
|
nil
|
797
797
|
end
|
798
798
|
|
799
|
-
#
|
799
|
+
# Update the sender domain of reseller's child based on the childAuthKey and domainName passed
|
800
800
|
# @param child_auth_key auth key of reseller's child
|
801
801
|
# @param domain_name Pass the existing domain that needs to be updated
|
802
802
|
# @param update_child_domain value to update for sender domain
|
@@ -848,7 +848,7 @@ module SibApiV3Sdk
|
|
848
848
|
end
|
849
849
|
return data, status_code, headers
|
850
850
|
end
|
851
|
-
#
|
851
|
+
# Update info of reseller's child based on the childAuthKey supplied
|
852
852
|
# @param child_auth_key auth key of reseller's child
|
853
853
|
# @param reseller_child values to update in child profile
|
854
854
|
# @param [Hash] opts the optional parameters
|
@@ -858,7 +858,7 @@ module SibApiV3Sdk
|
|
858
858
|
nil
|
859
859
|
end
|
860
860
|
|
861
|
-
#
|
861
|
+
# Update info of reseller's child based on the childAuthKey supplied
|
862
862
|
# @param child_auth_key auth key of reseller's child
|
863
863
|
# @param reseller_child values to update in child profile
|
864
864
|
# @param [Hash] opts the optional parameters
|