Skip to content

Commit f79345d

Browse files
authored
Merge pull request #21 from sendinblue/feature_contact-trans-unsub
Mixed spec updates
2 parents e147ba5 + 53a64e2 commit f79345d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+361
-1097
lines changed

README.md

+10-12
Original file line numberDiff line numberDiff line change
@@ -140,15 +140,15 @@ Class | Method | HTTP request | Description
140140
*SibApiV3Sdk.ContactsApi* | [**updateFolder**](docs/ContactsApi.md#updateFolder) | **PUT** /contacts/folders/{folderId} | Update a contact folder
141141
*SibApiV3Sdk.ContactsApi* | [**updateList**](docs/ContactsApi.md#updateList) | **PUT** /contacts/lists/{listId} | Update a list
142142
*SibApiV3Sdk.EmailCampaignsApi* | [**createEmailCampaign**](docs/EmailCampaignsApi.md#createEmailCampaign) | **POST** /emailCampaigns | Create an email campaign
143-
*SibApiV3Sdk.EmailCampaignsApi* | [**deleteEmailCampaigns**](docs/EmailCampaignsApi.md#deleteEmailCampaigns) | **DELETE** /emailCampaigns/{campaignId} | Delete an email campaign
143+
*SibApiV3Sdk.EmailCampaignsApi* | [**deleteEmailCampaign**](docs/EmailCampaignsApi.md#deleteEmailCampaign) | **DELETE** /emailCampaigns/{campaignId} | Delete an email campaign
144144
*SibApiV3Sdk.EmailCampaignsApi* | [**emailExportRecipients**](docs/EmailCampaignsApi.md#emailExportRecipients) | **POST** /emailCampaigns/{campaignId}/exportRecipients | Export the recipients of a campaign
145145
*SibApiV3Sdk.EmailCampaignsApi* | [**getEmailCampaign**](docs/EmailCampaignsApi.md#getEmailCampaign) | **GET** /emailCampaigns/{campaignId} | Get campaign informations
146146
*SibApiV3Sdk.EmailCampaignsApi* | [**getEmailCampaigns**](docs/EmailCampaignsApi.md#getEmailCampaigns) | **GET** /emailCampaigns | Return all your created campaigns
147147
*SibApiV3Sdk.EmailCampaignsApi* | [**sendEmailCampaignNow**](docs/EmailCampaignsApi.md#sendEmailCampaignNow) | **POST** /emailCampaigns/{campaignId}/sendNow | Send an email campaign id of the campaign immediately
148148
*SibApiV3Sdk.EmailCampaignsApi* | [**sendReport**](docs/EmailCampaignsApi.md#sendReport) | **POST** /emailCampaigns/{campaignId}/sendReport | Send the report of a campaigns
149149
*SibApiV3Sdk.EmailCampaignsApi* | [**sendTestEmail**](docs/EmailCampaignsApi.md#sendTestEmail) | **POST** /emailCampaigns/{campaignId}/sendTest | Send an email campaign to your test list
150150
*SibApiV3Sdk.EmailCampaignsApi* | [**updateCampaignStatus**](docs/EmailCampaignsApi.md#updateCampaignStatus) | **PUT** /emailCampaigns/{campaignId}/status | Update a campaign status
151-
*SibApiV3Sdk.EmailCampaignsApi* | [**updateEmailCampaigns**](docs/EmailCampaignsApi.md#updateEmailCampaigns) | **PUT** /emailCampaigns/{campaignId} | Update a campaign
151+
*SibApiV3Sdk.EmailCampaignsApi* | [**updateEmailCampaign**](docs/EmailCampaignsApi.md#updateEmailCampaign) | **PUT** /emailCampaigns/{campaignId} | Update a campaign
152152
*SibApiV3Sdk.FoldersApi* | [**createFolder**](docs/FoldersApi.md#createFolder) | **POST** /contacts/folders | Create a folder
153153
*SibApiV3Sdk.FoldersApi* | [**deleteFolder**](docs/FoldersApi.md#deleteFolder) | **DELETE** /contacts/folders/{folderId} | Delete a folder (and all its lists)
154154
*SibApiV3Sdk.FoldersApi* | [**getFolder**](docs/FoldersApi.md#getFolder) | **GET** /contacts/folders/{folderId} | Returns folder details
@@ -175,16 +175,16 @@ Class | Method | HTTP request | Description
175175
*SibApiV3Sdk.ResellerApi* | [**getResellerChilds**](docs/ResellerApi.md#getResellerChilds) | **GET** /reseller/children | Gets the list of all reseller's children accounts
176176
*SibApiV3Sdk.ResellerApi* | [**removeCredits**](docs/ResellerApi.md#removeCredits) | **POST** /reseller/children/{childId}/credits/remove | Remove Email and/or SMS credits from a specific child account
177177
*SibApiV3Sdk.ResellerApi* | [**updateResellerChild**](docs/ResellerApi.md#updateResellerChild) | **PUT** /reseller/children/{childId} | Updates infos of reseller's child based on the childId supplied
178-
*SibApiV3Sdk.SMSCampaignsApi* | [**createSMSCampaign**](docs/SMSCampaignsApi.md#createSMSCampaign) | **POST** /smsCampaigns | Creates an SMS campaign
179-
*SibApiV3Sdk.SMSCampaignsApi* | [**deleteSMSCampaigns**](docs/SMSCampaignsApi.md#deleteSMSCampaigns) | **DELETE** /smsCampaigns/{campaignId} | Delete the SMS campaign
180-
*SibApiV3Sdk.SMSCampaignsApi* | [**getSMSCampaigns**](docs/SMSCampaignsApi.md#getSMSCampaigns) | **GET** /smsCampaigns | Returns the informations for all your created SMS campaigns
178+
*SibApiV3Sdk.SMSCampaignsApi* | [**createSmsCampaign**](docs/SMSCampaignsApi.md#createSmsCampaign) | **POST** /smsCampaigns | Creates an SMS campaign
179+
*SibApiV3Sdk.SMSCampaignsApi* | [**deleteSmsCampaign**](docs/SMSCampaignsApi.md#deleteSmsCampaign) | **DELETE** /smsCampaigns/{campaignId} | Delete the SMS campaign
181180
*SibApiV3Sdk.SMSCampaignsApi* | [**getSmsCampaign**](docs/SMSCampaignsApi.md#getSmsCampaign) | **GET** /smsCampaigns/{campaignId} | Get an SMS campaign
182-
*SibApiV3Sdk.SMSCampaignsApi* | [**requestSMSRecipientExport**](docs/SMSCampaignsApi.md#requestSMSRecipientExport) | **POST** /smsCampaigns/{campaignId}/exportRecipients | Exports the recipients of the specified campaign.
183-
*SibApiV3Sdk.SMSCampaignsApi* | [**sendSMSCampaignNow**](docs/SMSCampaignsApi.md#sendSMSCampaignNow) | **POST** /smsCampaigns/{campaignId}/sendNow | Send your SMS campaign immediately
184-
*SibApiV3Sdk.SMSCampaignsApi* | [**sendSMSReport**](docs/SMSCampaignsApi.md#sendSMSReport) | **POST** /smsCampaigns/{campaignId}/sendReport | Send report of SMS campaigns
181+
*SibApiV3Sdk.SMSCampaignsApi* | [**getSmsCampaigns**](docs/SMSCampaignsApi.md#getSmsCampaigns) | **GET** /smsCampaigns | Returns the informations for all your created SMS campaigns
182+
*SibApiV3Sdk.SMSCampaignsApi* | [**requestSmsRecipientExport**](docs/SMSCampaignsApi.md#requestSmsRecipientExport) | **POST** /smsCampaigns/{campaignId}/exportRecipients | Exports the recipients of the specified campaign.
183+
*SibApiV3Sdk.SMSCampaignsApi* | [**sendSmsCampaignNow**](docs/SMSCampaignsApi.md#sendSmsCampaignNow) | **POST** /smsCampaigns/{campaignId}/sendNow | Send your SMS campaign immediately
184+
*SibApiV3Sdk.SMSCampaignsApi* | [**sendSmsReport**](docs/SMSCampaignsApi.md#sendSmsReport) | **POST** /smsCampaigns/{campaignId}/sendReport | Send report of SMS campaigns
185185
*SibApiV3Sdk.SMSCampaignsApi* | [**sendTestSms**](docs/SMSCampaignsApi.md#sendTestSms) | **POST** /smsCampaigns/{campaignId}/sendTest | Send an SMS
186-
*SibApiV3Sdk.SMSCampaignsApi* | [**updateSMSCampaignStatus**](docs/SMSCampaignsApi.md#updateSMSCampaignStatus) | **PUT** /smsCampaigns/{campaignId}/status | Update the campaign status
187186
*SibApiV3Sdk.SMSCampaignsApi* | [**updateSmsCampaign**](docs/SMSCampaignsApi.md#updateSmsCampaign) | **PUT** /smsCampaigns/{campaignId} | Updates an SMS campaign
187+
*SibApiV3Sdk.SMSCampaignsApi* | [**updateSmsCampaignStatus**](docs/SMSCampaignsApi.md#updateSmsCampaignStatus) | **PUT** /smsCampaigns/{campaignId}/status | Update the campaign status
188188
*SibApiV3Sdk.SMTPApi* | [**createSmtpTemplate**](docs/SMTPApi.md#createSmtpTemplate) | **POST** /smtp/templates | Create an smtp template
189189
*SibApiV3Sdk.SMTPApi* | [**deleteHardbounces**](docs/SMTPApi.md#deleteHardbounces) | **POST** /smtp/deleteHardbounces | Delete hardbounces
190190
*SibApiV3Sdk.SMTPApi* | [**deleteSmtpTemplate**](docs/SMTPApi.md#deleteSmtpTemplate) | **DELETE** /smtp/templates/{templateId} | Delete an inactive smtp template
@@ -251,8 +251,6 @@ Class | Method | HTTP request | Description
251251
- [SibApiV3Sdk.GetAttributesEnumeration](docs/GetAttributesEnumeration.md)
252252
- [SibApiV3Sdk.GetCampaignOverview](docs/GetCampaignOverview.md)
253253
- [SibApiV3Sdk.GetCampaignRecipients](docs/GetCampaignRecipients.md)
254-
- [SibApiV3Sdk.GetCampaignRecipientsExclusionLists](docs/GetCampaignRecipientsExclusionLists.md)
255-
- [SibApiV3Sdk.GetCampaignRecipientsLists](docs/GetCampaignRecipientsLists.md)
256254
- [SibApiV3Sdk.GetCampaignStats](docs/GetCampaignStats.md)
257255
- [SibApiV3Sdk.GetChildInfoApiKeys](docs/GetChildInfoApiKeys.md)
258256
- [SibApiV3Sdk.GetChildInfoCredits](docs/GetChildInfoCredits.md)
@@ -325,7 +323,7 @@ Class | Method | HTTP request | Description
325323
- [SibApiV3Sdk.RequestContactExport](docs/RequestContactExport.md)
326324
- [SibApiV3Sdk.RequestContactImport](docs/RequestContactImport.md)
327325
- [SibApiV3Sdk.RequestContactImportNewList](docs/RequestContactImportNewList.md)
328-
- [SibApiV3Sdk.RequestSMSRecipientExport](docs/RequestSMSRecipientExport.md)
326+
- [SibApiV3Sdk.RequestSmsRecipientExport](docs/RequestSmsRecipientExport.md)
329327
- [SibApiV3Sdk.SendEmail](docs/SendEmail.md)
330328
- [SibApiV3Sdk.SendEmailAttachment](docs/SendEmailAttachment.md)
331329
- [SibApiV3Sdk.SendReport](docs/SendReport.md)

docs/ContactsApi.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ var apiInstance = new SibApiV3Sdk.ContactsApi();
587587
var opts = {
588588
'limit': 50, // Number | Number of documents per page
589589
'offset': 0, // Number | Index of the first document of the page
590-
'modifiedSince': new Date("2013-10-20T19:20:30+01:00") // Date | Filter (urlencoded) the contacts modified after a given UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ)
590+
'modifiedSince': new Date("2013-10-20T19:20:30+01:00") // Date | 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.
591591
};
592592
apiInstance.getContacts(opts).then(function(data) {
593593
console.log('API called successfully. Returned data: ' + data);
@@ -603,7 +603,7 @@ Name | Type | Description | Notes
603603
------------- | ------------- | ------------- | -------------
604604
**limit** | **Number**| Number of documents per page | [optional] [default to 50]
605605
**offset** | **Number**| Index of the first document of the page | [optional] [default to 0]
606-
**modifiedSince** | **Date**| Filter (urlencoded) the contacts modified after a given UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
606+
**modifiedSince** | **Date**| 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. | [optional]
607607

608608
### Return type
609609

@@ -640,7 +640,7 @@ var apiInstance = new SibApiV3Sdk.ContactsApi();
640640
var listId = 789; // Number | Id of the list
641641

642642
var opts = {
643-
'modifiedSince': new Date("2013-10-20T19:20:30+01:00"), // Date | Filter (urlencoded) the contacts modified after a given UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ)
643+
'modifiedSince': new Date("2013-10-20T19:20:30+01:00"), // Date | 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.
644644
'limit': 50, // Number | Number of documents per page
645645
'offset': 0 // Number | Index of the first document of the page
646646
};
@@ -657,7 +657,7 @@ apiInstance.getContactsFromList(listId, opts).then(function(data) {
657657
Name | Type | Description | Notes
658658
------------- | ------------- | ------------- | -------------
659659
**listId** | **Number**| Id of the list |
660-
**modifiedSince** | **Date**| Filter (urlencoded) the contacts modified after a given UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
660+
**modifiedSince** | **Date**| 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. | [optional]
661661
**limit** | **Number**| Number of documents per page | [optional] [default to 50]
662662
**offset** | **Number**| Index of the first document of the page | [optional] [default to 0]
663663

docs/CreateContact.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ Name | Type | Description | Notes
99
**smsBlacklisted** | **Boolean** | Blacklist the contact for SMS (smsBlacklisted = true) | [optional]
1010
**listIds** | **[Number]** | Ids of the lists to add the contact to | [optional]
1111
**updateEnabled** | **Boolean** | Facilitate to update existing contact in same request (updateEnabled = true) | [optional] [default to false]
12+
**smtpBlacklistSender** | **[String]** | SMTP forbidden sender for contact. Use only for email Contact ( only available if updateEnabled = true ) | [optional]
1213

1314

docs/CreateEmailCampaign.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Name | Type | Description | Notes
88
**name** | **String** | Name of the campaign |
99
**htmlContent** | **String** | Mandatory if htmlUrl is empty. Body of the message (HTML) | [optional]
1010
**htmlUrl** | **String** | Mandatory if htmlContent is empty. Url to the message (HTML) | [optional]
11-
**scheduledAt** | **Date** | Sending UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
11+
**scheduledAt** | **Date** | Sending UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ). Prefer to pass your timezone in date-time format for accurate result. | [optional]
1212
**subject** | **String** | Subject of the campaign |
1313
**replyTo** | **String** | Email on which the campaign recipients will be able to reply to | [optional]
1414
**toField** | **String** | To personalize the «To» Field, e.g. if you want to include the first name and last name of your recipient, use [FNAME] [LNAME]. These attributes must already exist in your contact database | [optional]
1515
**recipients** | [**CreateEmailCampaignRecipients**](CreateEmailCampaignRecipients.md) | | [optional]
16-
**attachmentUrl** | **String** | Absolute url of the attachment (no local file). Extensions allowed xlsx, xls, ods, docx, docm, doc, csv, pdf, txt, gif, jpg, jpeg, png, tif, tiff and rtf | [optional]
16+
**attachmentUrl** | **String** | Absolute url of the attachment (no local file). Extension allowed: xlsx, xls, ods, docx, docm, doc, csv, pdf, txt, gif, jpg, jpeg, png, tif, tiff, rtf, bmp, cgm, css, shtml, html, htm, zip, xml, ppt, pptx, tar, ez, ics, mobi, msg, pub and eps | [optional]
1717
**inlineImageActivation** | **Boolean** | Use true to embedded the images in your email. Final size of the email should be less than 4MB. Campaigns with embedded images can not be sent to more than 5000 contacts | [optional] [default to false]
1818
**mirrorActive** | **Boolean** | Use true to enable the mirror link | [optional]
1919
**recurring** | **Boolean** | For trigger campagins use false to make sure a contact receives the same campaign only once | [optional] [default to false]

docs/CreateSmsCampaign.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ Name | Type | Description | Notes
77
**sender** | **String** | Name of the sender. The number of characters is limited to 11 |
88
**content** | **String** | Content of the message. The maximum characters used per SMS is 160, if used more than that, it will be counted as more than one SMS | [optional]
99
**recipients** | [**CreateSmsCampaignRecipients**](CreateSmsCampaignRecipients.md) | | [optional]
10-
**scheduledAt** | **Date** | UTC date-time on which the campaign has to run (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
10+
**scheduledAt** | **Date** | UTC date-time on which the campaign has to run (YYYY-MM-DDTHH:mm:ss.SSSZ). Prefer to pass your timezone in date-time format for accurate result. | [optional]
1111

1212

docs/CreateSmtpTemplate.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Name | Type | Description | Notes
1111
**subject** | **String** | Subject of the template |
1212
**replyTo** | **String** | Email on which campaign recipients will be able to reply to | [optional]
1313
**toField** | **String** | This is to personalize the «To» Field. If you want to include the first name and last name of your recipient, add [FNAME] [LNAME]. To use the contact attributes here, these must already exist in SendinBlue account | [optional]
14-
**attachmentUrl** | **String** | Absolute url of the attachment (no local file). Extensions allowed xlsx, xls, ods, docx, docm, doc, csv, pdf, txt, gif, jpg, jpeg, png, tif, tiff and rtf | [optional]
14+
**attachmentUrl** | **String** | Absolute url of the attachment (no local file). Extension allowed: xlsx, xls, ods, docx, docm, doc, csv, pdf, txt, gif, jpg, jpeg, png, tif, tiff, rtf, bmp, cgm, css, shtml, html, htm, zip, xml, ppt, pptx, tar, ez, ics, mobi, msg, pub and eps | [optional]
1515
**isActive** | **Boolean** | Status of template. isActive = true means template is active and isActive = false means template is inactive | [optional]
1616

1717

docs/EmailCampaignsApi.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ All URIs are relative to *https://api.sendinblue.com/v3*
55
Method | HTTP request | Description
66
------------- | ------------- | -------------
77
[**createEmailCampaign**](EmailCampaignsApi.md#createEmailCampaign) | **POST** /emailCampaigns | Create an email campaign
8-
[**deleteEmailCampaigns**](EmailCampaignsApi.md#deleteEmailCampaigns) | **DELETE** /emailCampaigns/{campaignId} | Delete an email campaign
8+
[**deleteEmailCampaign**](EmailCampaignsApi.md#deleteEmailCampaign) | **DELETE** /emailCampaigns/{campaignId} | Delete an email campaign
99
[**emailExportRecipients**](EmailCampaignsApi.md#emailExportRecipients) | **POST** /emailCampaigns/{campaignId}/exportRecipients | Export the recipients of a campaign
1010
[**getEmailCampaign**](EmailCampaignsApi.md#getEmailCampaign) | **GET** /emailCampaigns/{campaignId} | Get campaign informations
1111
[**getEmailCampaigns**](EmailCampaignsApi.md#getEmailCampaigns) | **GET** /emailCampaigns | Return all your created campaigns
1212
[**sendEmailCampaignNow**](EmailCampaignsApi.md#sendEmailCampaignNow) | **POST** /emailCampaigns/{campaignId}/sendNow | Send an email campaign id of the campaign immediately
1313
[**sendReport**](EmailCampaignsApi.md#sendReport) | **POST** /emailCampaigns/{campaignId}/sendReport | Send the report of a campaigns
1414
[**sendTestEmail**](EmailCampaignsApi.md#sendTestEmail) | **POST** /emailCampaigns/{campaignId}/sendTest | Send an email campaign to your test list
1515
[**updateCampaignStatus**](EmailCampaignsApi.md#updateCampaignStatus) | **PUT** /emailCampaigns/{campaignId}/status | Update a campaign status
16-
[**updateEmailCampaigns**](EmailCampaignsApi.md#updateEmailCampaigns) | **PUT** /emailCampaigns/{campaignId} | Update a campaign
16+
[**updateEmailCampaign**](EmailCampaignsApi.md#updateEmailCampaign) | **PUT** /emailCampaigns/{campaignId} | Update a campaign
1717

1818

1919
<a name="createEmailCampaign"></a>
@@ -64,9 +64,9 @@ Name | Type | Description | Notes
6464
- **Content-Type**: application/json
6565
- **Accept**: application/json
6666

67-
<a name="deleteEmailCampaigns"></a>
68-
# **deleteEmailCampaigns**
69-
> deleteEmailCampaigns(campaignId)
67+
<a name="deleteEmailCampaign"></a>
68+
# **deleteEmailCampaign**
69+
> deleteEmailCampaign(campaignId)
7070
7171
Delete an email campaign
7272

@@ -85,7 +85,7 @@ var apiInstance = new SibApiV3Sdk.EmailCampaignsApi();
8585

8686
var campaignId = 789; // Number | id of the campaign
8787

88-
apiInstance.deleteEmailCampaigns(campaignId).then(function() {
88+
apiInstance.deleteEmailCampaign(campaignId).then(function() {
8989
console.log('API called successfully.');
9090
}, function(error) {
9191
console.error(error);
@@ -470,9 +470,9 @@ null (empty response body)
470470
- **Content-Type**: application/json
471471
- **Accept**: application/json
472472

473-
<a name="updateEmailCampaigns"></a>
474-
# **updateEmailCampaigns**
475-
> updateEmailCampaigns(campaignId, emailCampaign)
473+
<a name="updateEmailCampaign"></a>
474+
# **updateEmailCampaign**
475+
> updateEmailCampaign(campaignId, emailCampaign)
476476
477477
Update a campaign
478478

@@ -493,7 +493,7 @@ var campaignId = 789; // Number | Id of the campaign
493493

494494
var emailCampaign = new SibApiV3Sdk.UpdateEmailCampaign(); // UpdateEmailCampaign | Values to update a campaign
495495

496-
apiInstance.updateEmailCampaigns(campaignId, emailCampaign).then(function() {
496+
apiInstance.updateEmailCampaign(campaignId, emailCampaign).then(function() {
497497
console.log('API called successfully.');
498498
}, function(error) {
499499
console.error(error);

docs/GetCampaignRecipients.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**lists** | [**[GetCampaignRecipientsLists]**](GetCampaignRecipientsLists.md) | Lists included in the campaign |
7-
**exclusionLists** | [**[GetCampaignRecipientsExclusionLists]**](GetCampaignRecipientsExclusionLists.md) | Lists excluded of the campaign |
6+
**lists** | **[Number]** | |
7+
**exclusionLists** | **[Number]** | |
88

99

docs/GetCampaignRecipientsExclusionLists.md

-9
This file was deleted.

docs/GetCampaignRecipientsLists.md

-9
This file was deleted.

0 commit comments

Comments
 (0)