@@ -4,17 +4,17 @@ All URIs are relative to *https://api.sendinblue.com/v3*
44
55Method | 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