Skip to content

Commit fc636a1

Browse files
Updated Version v3.2.0
1 parent b8ffdda commit fc636a1

File tree

83 files changed

+1060
-521
lines changed

Some content is hidden

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

83 files changed

+1060
-521
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ SendinBlue's API matches the [OpenAPI v2 definition](https://www.openapis.org/).
99
This C# SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project and is reviewed and maintained by SendinBlue:
1010

1111
- API version: 3.0.0
12-
- SDK version: 3.1.0
12+
- SDK version: 3.2.0
1313
- Build package: io.swagger.codegen.languages.CSharpClientCodegen
1414
For more information, please visit [https://account.sendinblue.com/support](https://account.sendinblue.com/support)
1515

@@ -362,9 +362,12 @@ Class | Method | HTTP request | Description
362362
- [Model.SendSmtpEmailAttachment](docs/SendSmtpEmailAttachment.md)
363363
- [Model.SendSmtpEmailBcc](docs/SendSmtpEmailBcc.md)
364364
- [Model.SendSmtpEmailCc](docs/SendSmtpEmailCc.md)
365+
- [Model.SendSmtpEmailMessageVersions](docs/SendSmtpEmailMessageVersions.md)
365366
- [Model.SendSmtpEmailReplyTo](docs/SendSmtpEmailReplyTo.md)
367+
- [Model.SendSmtpEmailReplyTo1](docs/SendSmtpEmailReplyTo1.md)
366368
- [Model.SendSmtpEmailSender](docs/SendSmtpEmailSender.md)
367369
- [Model.SendSmtpEmailTo](docs/SendSmtpEmailTo.md)
370+
- [Model.SendSmtpEmailTo1](docs/SendSmtpEmailTo1.md)
368371
- [Model.SendTemplateEmail](docs/SendTemplateEmail.md)
369372
- [Model.SendTestEmail](docs/SendTestEmail.md)
370373
- [Model.SendTestSms](docs/SendTestSms.md)

docs/ContactsApi.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -849,7 +849,7 @@ Name | Type | Description | Notes
849849

850850
<a name="getcontactstats"></a>
851851
# **GetContactStats**
852-
> GetContactCampaignStats GetContactStats (string identifier, DateTime? startDate = null, DateTime? endDate = null)
852+
> GetContactCampaignStats GetContactStats (string identifier, string startDate = null, string endDate = null)
853853
854854
Get email campaigns' statistics for a contact
855855

@@ -878,8 +878,8 @@ namespace Example
878878
879879
var apiInstance = new ContactsApi();
880880
var identifier = identifier_example; // string | Email (urlencoded) OR ID of the contact
881-
var startDate = 2013-10-20; // DateTime? | Mandatory if endDate is used. Starting date (YYYY-MM-DD) of the statistic events specific to campaigns. Must be lower than equal to endDate (optional)
882-
var endDate = 2013-10-20; // DateTime? | Mandatory if startDate is used. Ending date (YYYY-MM-DD) of the statistic events specific to campaigns. Must be greater than equal to startDate (optional)
881+
var startDate = startDate_example; // string | Mandatory if endDate is used. Starting date (YYYY-MM-DD) of the statistic events specific to campaigns. Must be lower than equal to endDate (optional)
882+
var endDate = endDate_example; // string | Mandatory if startDate is used. Ending date (YYYY-MM-DD) of the statistic events specific to campaigns. Must be greater than equal to startDate (optional)
883883
884884
try
885885
{
@@ -901,8 +901,8 @@ namespace Example
901901
Name | Type | Description | Notes
902902
------------- | ------------- | ------------- | -------------
903903
**identifier** | **string**| Email (urlencoded) OR ID of the contact |
904-
**startDate** | **DateTime?**| Mandatory if endDate is used. Starting date (YYYY-MM-DD) of the statistic events specific to campaigns. Must be lower than equal to endDate | [optional]
905-
**endDate** | **DateTime?**| Mandatory if startDate is used. Ending date (YYYY-MM-DD) of the statistic events specific to campaigns. Must be greater than equal to startDate | [optional]
904+
**startDate** | **string**| Mandatory if endDate is used. Starting date (YYYY-MM-DD) of the statistic events specific to campaigns. Must be lower than equal to endDate | [optional]
905+
**endDate** | **string**| Mandatory if startDate is used. Ending date (YYYY-MM-DD) of the statistic events specific to campaigns. Must be greater than equal to startDate | [optional]
906906

907907
### Return type
908908

@@ -921,7 +921,7 @@ Name | Type | Description | Notes
921921

922922
<a name="getcontacts"></a>
923923
# **GetContacts**
924-
> GetContacts GetContacts (long? limit = null, long? offset = null, DateTime? modifiedSince = null, string sort = null)
924+
> GetContacts GetContacts (long? limit = null, long? offset = null, string modifiedSince = null, string sort = null)
925925
926926
Get all the contacts
927927

@@ -951,8 +951,8 @@ namespace Example
951951
var apiInstance = new ContactsApi();
952952
var limit = 789; // long? | Number of documents per page (optional) (default to 50)
953953
var offset = 789; // long? | Index of the first document of the page (optional) (default to 0)
954-
var modifiedSince = 2013-10-20T19:20:30+01:00; // DateTime? | 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)
955-
var sort = sort_example; // string | Sort the results in the ascending/descending order of record creation (optional) (default to desc)
954+
var modifiedSince = modifiedSince_example; // string | 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)
955+
var sort = sort_example; // string | Sort the results in the ascending/descending order of record creation. Default order is **descending** if `sort` is not passed (optional) (default to desc)
956956
957957
try
958958
{
@@ -975,8 +975,8 @@ Name | Type | Description | Notes
975975
------------- | ------------- | ------------- | -------------
976976
**limit** | **long?**| Number of documents per page | [optional] [default to 50]
977977
**offset** | **long?**| Index of the first document of the page | [optional] [default to 0]
978-
**modifiedSince** | **DateTime?**| 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]
979-
**sort** | **string**| Sort the results in the ascending/descending order of record creation | [optional] [default to desc]
978+
**modifiedSince** | **string**| 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]
979+
**sort** | **string**| Sort the results in the ascending/descending order of record creation. Default order is **descending** if &#x60;sort&#x60; is not passed | [optional] [default to desc]
980980

981981
### Return type
982982

@@ -995,7 +995,7 @@ Name | Type | Description | Notes
995995

996996
<a name="getcontactsfromlist"></a>
997997
# **GetContactsFromList**
998-
> GetContacts GetContactsFromList (long? listId, DateTime? modifiedSince = null, long? limit = null, long? offset = null, string sort = null)
998+
> GetContacts GetContactsFromList (long? listId, string modifiedSince = null, long? limit = null, long? offset = null, string sort = null)
999999
10001000
Get contacts in a list
10011001

@@ -1024,10 +1024,10 @@ namespace Example
10241024
10251025
var apiInstance = new ContactsApi();
10261026
var listId = 789; // long? | Id of the list
1027-
var modifiedSince = 2013-10-20T19:20:30+01:00; // DateTime? | 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)
1027+
var modifiedSince = modifiedSince_example; // string | 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)
10281028
var limit = 789; // long? | Number of documents per page (optional) (default to 50)
10291029
var offset = 789; // long? | Index of the first document of the page (optional) (default to 0)
1030-
var sort = sort_example; // string | Sort the results in the ascending/descending order of record creation (optional) (default to desc)
1030+
var sort = sort_example; // string | Sort the results in the ascending/descending order of record creation. Default order is **descending** if `sort` is not passed (optional) (default to desc)
10311031
10321032
try
10331033
{
@@ -1049,10 +1049,10 @@ namespace Example
10491049
Name | Type | Description | Notes
10501050
------------- | ------------- | ------------- | -------------
10511051
**listId** | **long?**| Id of the list |
1052-
**modifiedSince** | **DateTime?**| 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]
1052+
**modifiedSince** | **string**| 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]
10531053
**limit** | **long?**| Number of documents per page | [optional] [default to 50]
10541054
**offset** | **long?**| Index of the first document of the page | [optional] [default to 0]
1055-
**sort** | **string**| Sort the results in the ascending/descending order of record creation | [optional] [default to desc]
1055+
**sort** | **string**| Sort the results in the ascending/descending order of record creation. Default order is **descending** if &#x60;sort&#x60; is not passed | [optional] [default to desc]
10561056

10571057
### Return type
10581058

@@ -1170,7 +1170,7 @@ namespace Example
11701170
var folderId = 789; // long? | Id of the folder
11711171
var limit = 789; // long? | Number of documents per page (optional) (default to 10)
11721172
var offset = 789; // long? | Index of the first document of the page (optional) (default to 0)
1173-
var sort = sort_example; // string | Sort the results in the ascending/descending order of record creation (optional) (default to desc)
1173+
var sort = sort_example; // string | Sort the results in the ascending/descending order of record creation. Default order is **descending** if `sort` is not passed (optional) (default to desc)
11741174
11751175
try
11761176
{
@@ -1194,7 +1194,7 @@ Name | Type | Description | Notes
11941194
**folderId** | **long?**| Id of the folder |
11951195
**limit** | **long?**| Number of documents per page | [optional] [default to 10]
11961196
**offset** | **long?**| Index of the first document of the page | [optional] [default to 0]
1197-
**sort** | **string**| Sort the results in the ascending/descending order of record creation | [optional] [default to desc]
1197+
**sort** | **string**| Sort the results in the ascending/descending order of record creation. Default order is **descending** if &#x60;sort&#x60; is not passed | [optional] [default to desc]
11981198

11991199
### Return type
12001200

@@ -1243,7 +1243,7 @@ namespace Example
12431243
var apiInstance = new ContactsApi();
12441244
var limit = 789; // long? | Number of documents per page (default to 10)
12451245
var offset = 789; // long? | Index of the first document of the page (default to 0)
1246-
var sort = sort_example; // string | Sort the results in the ascending/descending order of record creation (optional) (default to desc)
1246+
var sort = sort_example; // string | Sort the results in the ascending/descending order of record creation. Default order is **descending** if `sort` is not passed (optional) (default to desc)
12471247
12481248
try
12491249
{
@@ -1266,7 +1266,7 @@ Name | Type | Description | Notes
12661266
------------- | ------------- | ------------- | -------------
12671267
**limit** | **long?**| Number of documents per page | [default to 10]
12681268
**offset** | **long?**| Index of the first document of the page | [default to 0]
1269-
**sort** | **string**| Sort the results in the ascending/descending order of record creation | [optional] [default to desc]
1269+
**sort** | **string**| Sort the results in the ascending/descending order of record creation. Default order is **descending** if &#x60;sort&#x60; is not passed | [optional] [default to desc]
12701270

12711271
### Return type
12721272

@@ -1383,7 +1383,7 @@ namespace Example
13831383
var apiInstance = new ContactsApi();
13841384
var limit = 789; // long? | Number of documents per page (optional) (default to 10)
13851385
var offset = 789; // long? | Index of the first document of the page (optional) (default to 0)
1386-
var sort = sort_example; // string | Sort the results in the ascending/descending order of record creation (optional) (default to desc)
1386+
var sort = sort_example; // string | Sort the results in the ascending/descending order of record creation. Default order is **descending** if `sort` is not passed (optional) (default to desc)
13871387
13881388
try
13891389
{
@@ -1406,7 +1406,7 @@ Name | Type | Description | Notes
14061406
------------- | ------------- | ------------- | -------------
14071407
**limit** | **long?**| Number of documents per page | [optional] [default to 10]
14081408
**offset** | **long?**| Index of the first document of the page | [optional] [default to 0]
1409-
**sort** | **string**| Sort the results in the ascending/descending order of record creation | [optional] [default to desc]
1409+
**sort** | **string**| Sort the results in the ascending/descending order of record creation. Default order is **descending** if &#x60;sort&#x60; is not passed | [optional] [default to desc]
14101410

14111411
### Return type
14121412

docs/CreateEmailCampaign.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
99
**HtmlContent** | **string** | Mandatory if htmlUrl and templateId are empty. Body of the message (HTML) | [optional]
1010
**HtmlUrl** | **string** | Mandatory if htmlContent and templateId are empty. Url to the message (HTML) | [optional]
1111
**TemplateId** | **long?** | Mandatory if htmlContent and htmlUrl are empty. Id of the transactional email template with status &#39;active&#39;. Used to copy only its content fetched from htmlContent/htmlUrl to an email campaign for RSS feature. | [optional]
12-
**ScheduledAt** | **DateTime?** | Sending UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ). Prefer to pass your timezone in date-time format for accurate result. If sendAtBestTime is set to true, your campaign will be sent according to the date passed (ignoring the time part). | [optional]
12+
**ScheduledAt** | **string** | Sending UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ). Prefer to pass your timezone in date-time format for accurate result. If sendAtBestTime is set to true, your campaign will be sent according to the date passed (ignoring the time part). | [optional]
1313
**Subject** | **string** | Subject of the campaign. Mandatory if abTesting is false. Ignored if abTesting is true. | [optional]
1414
**ReplyTo** | **string** | Email on which the campaign recipients will be able to reply to | [optional]
1515
**ToField** | **string** | To personalize the «To» Field. If you want to include the first name and last name of your recipient, add {FNAME} {LNAME}. These contact attributes must already exist in your SendinBlue account. If input parameter &#39;params&#39; used please use {{contact.FNAME}} {{contact.LNAME}} for personalization | [optional]

docs/CreateSmsCampaign.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
77
**Sender** | **string** | Name of the sender. **The number of characters is limited to 11 for alphanumeric characters and 15 for numeric characters** |
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 |
99
**Recipients** | [**CreateSmsCampaignRecipients**](CreateSmsCampaignRecipients.md) | | [optional]
10-
**ScheduledAt** | **DateTime?** | 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]
10+
**ScheduledAt** | **string** | 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
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1313

docs/CreateSmtpEmail.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**MessageId** | **string** | Message ID of the transactional email sent |
6+
**MessageId** | **string** | Message ID of the transactional email sent | [optional]
7+
**MessageIds** | **List&lt;string&gt;** | | [optional]
78

89
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
910

0 commit comments

Comments
 (0)