@@ -4,16 +4,16 @@ All URIs are relative to *https://api.sendinblue.com/v3*
44
55Method | HTTP request | Description
66------------- | ------------- | -------------
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
1111
1212
1313# ** create_attribute**
1414> create_attribute(attribute_category, attribute_name, create_attribute)
1515
16- Creates contact attribute
16+ Create contact attribute
1717
1818### Example
1919``` python
@@ -41,7 +41,7 @@ attribute_name = 'attribute_name_example' # str | Name of the attribute
4141create_attribute = sib_api_v3_sdk.CreateAttribute() # CreateAttribute | Values to create an attribute
4242
4343try :
44- # Creates contact attribute
44+ # Create contact attribute
4545 api_instance.create_attribute(attribute_category, attribute_name, create_attribute)
4646except ApiException as e:
4747 print (" Exception when calling AttributesApi->create_attribute: %s \n " % e)
@@ -73,7 +73,7 @@ void (empty response body)
7373# ** delete_attribute**
7474> delete_attribute(attribute_category, attribute_name)
7575
76- Deletes an attribute
76+ Delete an attribute
7777
7878### Example
7979``` python
@@ -100,7 +100,7 @@ attribute_category = 'attribute_category_example' # str | Category of the attrib
100100attribute_name = ' attribute_name_example' # str | Name of the existing attribute
101101
102102try :
103- # Deletes an attribute
103+ # Delete an attribute
104104 api_instance.delete_attribute(attribute_category, attribute_name)
105105except ApiException as e:
106106 print (" Exception when calling AttributesApi->delete_attribute: %s \n " % e)
@@ -131,7 +131,7 @@ void (empty response body)
131131# ** get_attributes**
132132> GetAttributes get_attributes()
133133
134- Lists all attributes
134+ List all attributes
135135
136136### Example
137137``` python
@@ -156,7 +156,7 @@ configuration.api_key['partner-key'] = 'YOUR_API_KEY'
156156api_instance = sib_api_v3_sdk.AttributesApi(sib_api_v3_sdk.ApiClient(configuration))
157157
158158try :
159- # Lists all attributes
159+ # List all attributes
160160 api_response = api_instance.get_attributes()
161161 pprint(api_response)
162162except ApiException as e:
@@ -184,7 +184,7 @@ This endpoint does not need any parameter.
184184# ** update_attribute**
185185> update_attribute(attribute_category, attribute_name, update_attribute)
186186
187- Updates contact attribute
187+ Update contact attribute
188188
189189### Example
190190``` python
@@ -212,7 +212,7 @@ attribute_name = 'attribute_name_example' # str | Name of the existing attribute
212212update_attribute = sib_api_v3_sdk.UpdateAttribute() # UpdateAttribute | Values to update an attribute
213213
214214try :
215- # Updates contact attribute
215+ # Update contact attribute
216216 api_instance.update_attribute(attribute_category, attribute_name, update_attribute)
217217except ApiException as e:
218218 print (" Exception when calling AttributesApi->update_attribute: %s \n " % e)
0 commit comments