@@ -4,16 +4,16 @@ All URIs are relative to *https://api.sendinblue.com/v3*
4
4
5
5
Method | HTTP request | Description
6
6
------------- | ------------- | -------------
7
- [ ** create_attribute** ] ( AttributesApi.md#create_attribute ) | ** POST** /contacts/attributes/{attributeCategory}/{attributeName} | Creates contact attribute
8
- [ ** delete_attribute** ] ( AttributesApi.md#delete_attribute ) | ** DELETE** /contacts/attributes/{attributeCategory}/{attributeName} | Deletes an attribute
9
- [ ** get_attributes** ] ( AttributesApi.md#get_attributes ) | ** GET** /contacts/attributes | Lists all attributes
10
- [ ** update_attribute** ] ( AttributesApi.md#update_attribute ) | ** PUT** /contacts/attributes/{attributeCategory}/{attributeName} | Updates contact attribute
7
+ [ ** create_attribute** ] ( AttributesApi.md#create_attribute ) | ** POST** /contacts/attributes/{attributeCategory}/{attributeName} | Create contact attribute
8
+ [ ** delete_attribute** ] ( AttributesApi.md#delete_attribute ) | ** DELETE** /contacts/attributes/{attributeCategory}/{attributeName} | Delete an attribute
9
+ [ ** get_attributes** ] ( AttributesApi.md#get_attributes ) | ** GET** /contacts/attributes | List all attributes
10
+ [ ** update_attribute** ] ( AttributesApi.md#update_attribute ) | ** PUT** /contacts/attributes/{attributeCategory}/{attributeName} | Update contact attribute
11
11
12
12
13
13
# ** create_attribute**
14
14
> create_attribute(attribute_category, attribute_name, create_attribute)
15
15
16
- Creates contact attribute
16
+ Create contact attribute
17
17
18
18
### Example
19
19
``` python
@@ -41,7 +41,7 @@ attribute_name = 'attribute_name_example' # str | Name of the attribute
41
41
create_attribute = sib_api_v3_sdk.CreateAttribute() # CreateAttribute | Values to create an attribute
42
42
43
43
try :
44
- # Creates contact attribute
44
+ # Create contact attribute
45
45
api_instance.create_attribute(attribute_category, attribute_name, create_attribute)
46
46
except ApiException as e:
47
47
print (" Exception when calling AttributesApi->create_attribute: %s \n " % e)
@@ -73,7 +73,7 @@ void (empty response body)
73
73
# ** delete_attribute**
74
74
> delete_attribute(attribute_category, attribute_name)
75
75
76
- Deletes an attribute
76
+ Delete an attribute
77
77
78
78
### Example
79
79
``` python
@@ -100,7 +100,7 @@ attribute_category = 'attribute_category_example' # str | Category of the attrib
100
100
attribute_name = ' attribute_name_example' # str | Name of the existing attribute
101
101
102
102
try :
103
- # Deletes an attribute
103
+ # Delete an attribute
104
104
api_instance.delete_attribute(attribute_category, attribute_name)
105
105
except ApiException as e:
106
106
print (" Exception when calling AttributesApi->delete_attribute: %s \n " % e)
@@ -131,7 +131,7 @@ void (empty response body)
131
131
# ** get_attributes**
132
132
> GetAttributes get_attributes()
133
133
134
- Lists all attributes
134
+ List all attributes
135
135
136
136
### Example
137
137
``` python
@@ -156,7 +156,7 @@ configuration.api_key['partner-key'] = 'YOUR_API_KEY'
156
156
api_instance = sib_api_v3_sdk.AttributesApi(sib_api_v3_sdk.ApiClient(configuration))
157
157
158
158
try :
159
- # Lists all attributes
159
+ # List all attributes
160
160
api_response = api_instance.get_attributes()
161
161
pprint(api_response)
162
162
except ApiException as e:
@@ -184,7 +184,7 @@ This endpoint does not need any parameter.
184
184
# ** update_attribute**
185
185
> update_attribute(attribute_category, attribute_name, update_attribute)
186
186
187
- Updates contact attribute
187
+ Update contact attribute
188
188
189
189
### Example
190
190
``` python
@@ -212,7 +212,7 @@ attribute_name = 'attribute_name_example' # str | Name of the existing attribute
212
212
update_attribute = sib_api_v3_sdk.UpdateAttribute() # UpdateAttribute | Values to update an attribute
213
213
214
214
try :
215
- # Updates contact attribute
215
+ # Update contact attribute
216
216
api_instance.update_attribute(attribute_category, attribute_name, update_attribute)
217
217
except ApiException as e:
218
218
print (" Exception when calling AttributesApi->update_attribute: %s \n " % e)
0 commit comments