Skip to content

Commit 06c2e34

Browse files
wrapperUpdate2.1.1
1 parent d708ff4 commit 06c2e34

Some content is hidden

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

64 files changed

+1867
-853
lines changed

README.md

+68-63
Large diffs are not rendered by default.

docs/AccountApi.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ All URIs are relative to *https://api.sendinblue.com/v3*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------
7-
[**GetAccount**](AccountApi.md#getaccount) | **GET** /account | Get your account informations, plans and credits details
7+
[**GetAccount**](AccountApi.md#getaccount) | **GET** /account | Get your account information, plan and credits details
88

99

1010
<a name="getaccount"></a>
1111
# **GetAccount**
1212
> GetAccount GetAccount ()
1313
14-
Get your account informations, plans and credits details
14+
Get your account information, plan and credits details
1515

1616
### Example
1717
```csharp
@@ -40,7 +40,7 @@ namespace Example
4040

4141
try
4242
{
43-
// Get your account informations, plans and credits details
43+
// Get your account information, plan and credits details
4444
GetAccount result = apiInstance.GetAccount();
4545
Debug.WriteLine(result);
4646
}

docs/AddContactToList.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**Emails** | **List&lt;string&gt;** | Emails to add to a list | [optional]
6+
**Emails** | **List&lt;string&gt;** | Emails to add to a list. You can pass a maximum of 150 emails for addition in one request. If you need to add the emails in bulk, please prefer /contacts/import api. | [optional]
77

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

docs/AttributesApi.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ All URIs are relative to *https://api.sendinblue.com/v3*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------
7-
[**CreateAttribute**](AttributesApi.md#createattribute) | **POST** /contacts/attributes/{attributeCategory}/{attributeName} | Creates contact attribute
8-
[**DeleteAttribute**](AttributesApi.md#deleteattribute) | **DELETE** /contacts/attributes/{attributeCategory}/{attributeName} | Deletes an attribute
9-
[**GetAttributes**](AttributesApi.md#getattributes) | **GET** /contacts/attributes | Lists all attributes
10-
[**UpdateAttribute**](AttributesApi.md#updateattribute) | **PUT** /contacts/attributes/{attributeCategory}/{attributeName} | Updates contact attribute
7+
[**CreateAttribute**](AttributesApi.md#createattribute) | **POST** /contacts/attributes/{attributeCategory}/{attributeName} | Create contact attribute
8+
[**DeleteAttribute**](AttributesApi.md#deleteattribute) | **DELETE** /contacts/attributes/{attributeCategory}/{attributeName} | Delete an attribute
9+
[**GetAttributes**](AttributesApi.md#getattributes) | **GET** /contacts/attributes | List all attributes
10+
[**UpdateAttribute**](AttributesApi.md#updateattribute) | **PUT** /contacts/attributes/{attributeCategory}/{attributeName} | Update contact attribute
1111

1212

1313
<a name="createattribute"></a>
1414
# **CreateAttribute**
1515
> void CreateAttribute (string attributeCategory, string attributeName, CreateAttribute createAttribute)
1616
17-
Creates contact attribute
17+
Create contact attribute
1818

1919
### Example
2020
```csharp
@@ -46,7 +46,7 @@ namespace Example
4646
4747
try
4848
{
49-
// Creates contact attribute
49+
// Create contact attribute
5050
apiInstance.CreateAttribute(attributeCategory, attributeName, createAttribute);
5151
}
5252
catch (Exception e)
@@ -85,7 +85,7 @@ void (empty response body)
8585
# **DeleteAttribute**
8686
> void DeleteAttribute (string attributeCategory, string attributeName)
8787
88-
Deletes an attribute
88+
Delete an attribute
8989

9090
### Example
9191
```csharp
@@ -116,7 +116,7 @@ namespace Example
116116
117117
try
118118
{
119-
// Deletes an attribute
119+
// Delete an attribute
120120
apiInstance.DeleteAttribute(attributeCategory, attributeName);
121121
}
122122
catch (Exception e)
@@ -154,7 +154,7 @@ void (empty response body)
154154
# **GetAttributes**
155155
> GetAttributes GetAttributes ()
156156
157-
Lists all attributes
157+
List all attributes
158158

159159
### Example
160160
```csharp
@@ -183,7 +183,7 @@ namespace Example
183183

184184
try
185185
{
186-
// Lists all attributes
186+
// List all attributes
187187
GetAttributes result = apiInstance.GetAttributes();
188188
Debug.WriteLine(result);
189189
}
@@ -218,7 +218,7 @@ This endpoint does not need any parameter.
218218
# **UpdateAttribute**
219219
> void UpdateAttribute (string attributeCategory, string attributeName, UpdateAttribute updateAttribute)
220220
221-
Updates contact attribute
221+
Update contact attribute
222222

223223
### Example
224224
```csharp
@@ -250,7 +250,7 @@ namespace Example
250250
251251
try
252252
{
253-
// Updates contact attribute
253+
// Update contact attribute
254254
apiInstance.UpdateAttribute(attributeCategory, attributeName, updateAttribute);
255255
}
256256
catch (Exception e)

0 commit comments

Comments
 (0)