@@ -4,17 +4,17 @@ All URIs are relative to *https://api.sendinblue.com/v3*
4
4
5
5
Method | HTTP request | Description
6
6
------------- | ------------- | -------------
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
11
11
12
12
13
13
<a name =" createattribute " ></a >
14
14
# ** CreateAttribute**
15
15
> void CreateAttribute (string attributeCategory, string attributeName, CreateAttribute createAttribute)
16
16
17
- Creates contact attribute
17
+ Create contact attribute
18
18
19
19
### Example
20
20
``` csharp
@@ -46,7 +46,7 @@ namespace Example
46
46
47
47
try
48
48
{
49
- // Creates contact attribute
49
+ // Create contact attribute
50
50
apiInstance .CreateAttribute (attributeCategory , attributeName , createAttribute );
51
51
}
52
52
catch (Exception e )
@@ -85,7 +85,7 @@ void (empty response body)
85
85
# ** DeleteAttribute**
86
86
> void DeleteAttribute (string attributeCategory, string attributeName)
87
87
88
- Deletes an attribute
88
+ Delete an attribute
89
89
90
90
### Example
91
91
``` csharp
@@ -116,7 +116,7 @@ namespace Example
116
116
117
117
try
118
118
{
119
- // Deletes an attribute
119
+ // Delete an attribute
120
120
apiInstance .DeleteAttribute (attributeCategory , attributeName );
121
121
}
122
122
catch (Exception e )
@@ -154,7 +154,7 @@ void (empty response body)
154
154
# ** GetAttributes**
155
155
> GetAttributes GetAttributes ()
156
156
157
- Lists all attributes
157
+ List all attributes
158
158
159
159
### Example
160
160
``` csharp
@@ -183,7 +183,7 @@ namespace Example
183
183
184
184
try
185
185
{
186
- // Lists all attributes
186
+ // List all attributes
187
187
GetAttributes result = apiInstance .GetAttributes ();
188
188
Debug .WriteLine (result );
189
189
}
@@ -218,7 +218,7 @@ This endpoint does not need any parameter.
218
218
# ** UpdateAttribute**
219
219
> void UpdateAttribute (string attributeCategory, string attributeName, UpdateAttribute updateAttribute)
220
220
221
- Updates contact attribute
221
+ Update contact attribute
222
222
223
223
### Example
224
224
``` csharp
@@ -250,7 +250,7 @@ namespace Example
250
250
251
251
try
252
252
{
253
- // Updates contact attribute
253
+ // Update contact attribute
254
254
apiInstance .UpdateAttribute (attributeCategory , attributeName , updateAttribute );
255
255
}
256
256
catch (Exception e )
0 commit comments