@@ -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
``` ruby
@@ -42,7 +42,7 @@ create_attribute = SibApiV3Sdk::CreateAttribute.new # CreateAttribute | Values t
42
42
43
43
44
44
begin
45
- # Creates contact attribute
45
+ # Create contact attribute
46
46
api_instance.create_attribute(attribute_category, attribute_name, create_attribute)
47
47
rescue SibApiV3Sdk ::ApiError => e
48
48
puts " Exception when calling AttributesApi->create_attribute: #{ e } "
@@ -75,7 +75,7 @@ nil (empty response body)
75
75
# ** delete_attribute**
76
76
> delete_attribute(attribute_category, attribute_name)
77
77
78
- Deletes an attribute
78
+ Delete an attribute
79
79
80
80
### Example
81
81
``` ruby
@@ -102,7 +102,7 @@ attribute_name = 'attribute_name_example' # String | Name of the existing attrib
102
102
103
103
104
104
begin
105
- # Deletes an attribute
105
+ # Delete an attribute
106
106
api_instance.delete_attribute(attribute_category, attribute_name)
107
107
rescue SibApiV3Sdk ::ApiError => e
108
108
puts " Exception when calling AttributesApi->delete_attribute: #{ e } "
@@ -134,7 +134,7 @@ nil (empty response body)
134
134
# ** get_attributes**
135
135
> GetAttributes get_attributes
136
136
137
- Lists all attributes
137
+ List all attributes
138
138
139
139
### Example
140
140
``` ruby
156
156
api_instance = SibApiV3Sdk ::AttributesApi .new
157
157
158
158
begin
159
- # Lists all attributes
159
+ # List all attributes
160
160
result = api_instance.get_attributes
161
161
p result
162
162
rescue SibApiV3Sdk ::ApiError => e
@@ -185,7 +185,7 @@ This endpoint does not need any parameter.
185
185
# ** update_attribute**
186
186
> update_attribute(attribute_category, attribute_name, update_attribute)
187
187
188
- Updates contact attribute
188
+ Update contact attribute
189
189
190
190
### Example
191
191
``` ruby
@@ -214,7 +214,7 @@ update_attribute = SibApiV3Sdk::UpdateAttribute.new # UpdateAttribute | Values t
214
214
215
215
216
216
begin
217
- # Updates contact attribute
217
+ # Update contact attribute
218
218
api_instance.update_attribute(attribute_category, attribute_name, update_attribute)
219
219
rescue SibApiV3Sdk ::ApiError => e
220
220
puts " Exception when calling AttributesApi->update_attribute: #{ e } "
0 commit comments