Skip to content

Commit 440883d

Browse files
authored
Merge pull request #49 from sendinblue/feature_may
Updated wrapper to v6.2.0
2 parents 1f1b324 + f7ec84b commit 440883d

File tree

74 files changed

+1407
-510
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+1407
-510
lines changed

README.md

Lines changed: 66 additions & 62 deletions
Large diffs are not rendered by default.

docs/AccountApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ All URIs are relative to *https://api.sendinblue.com/v3*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------
7-
[**get_account**](AccountApi.md#get_account) | **GET** /account | Get your account informations, plans and credits details
7+
[**get_account**](AccountApi.md#get_account) | **GET** /account | Get your account information, plan and credits details
88

99

1010
# **get_account**
1111
> GetAccount get_account()
1212
13-
Get your account informations, plans and credits details
13+
Get your account information, plan and credits details
1414

1515
### Example
1616
```python
@@ -35,7 +35,7 @@ configuration.api_key['partner-key'] = 'YOUR_API_KEY'
3535
api_instance = sib_api_v3_sdk.AccountApi(sib_api_v3_sdk.ApiClient(configuration))
3636

3737
try:
38-
# Get your account informations, plans and credits details
38+
# Get your account information, plan and credits details
3939
api_response = api_instance.get_account()
4040
pprint(api_response)
4141
except ApiException as e:

docs/AddContactToList.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**emails** | **list[str]** | Emails to add to a list | [optional]
6+
**emails** | **list[str]** | Emails to add to a list. You can pass a maximum of 150 emails for addition in one request. If you need to add the emails in bulk, please prefer /contacts/import api. | [optional]
77

88
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
99

docs/AttributesApi.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ All URIs are relative to *https://api.sendinblue.com/v3*
44

55
Method | 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
4141
create_attribute = sib_api_v3_sdk.CreateAttribute() # CreateAttribute | Values to create an attribute
4242

4343
try:
44-
# Creates contact attribute
44+
# Create contact attribute
4545
api_instance.create_attribute(attribute_category, attribute_name, create_attribute)
4646
except 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
100100
attribute_name = 'attribute_name_example' # str | Name of the existing attribute
101101

102102
try:
103-
# Deletes an attribute
103+
# Delete an attribute
104104
api_instance.delete_attribute(attribute_category, attribute_name)
105105
except 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'
156156
api_instance = sib_api_v3_sdk.AttributesApi(sib_api_v3_sdk.ApiClient(configuration))
157157

158158
try:
159-
# Lists all attributes
159+
# List all attributes
160160
api_response = api_instance.get_attributes()
161161
pprint(api_response)
162162
except 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
212212
update_attribute = sib_api_v3_sdk.UpdateAttribute() # UpdateAttribute | Values to update an attribute
213213

214214
try:
215-
# Updates contact attribute
215+
# Update contact attribute
216216
api_instance.update_attribute(attribute_category, attribute_name, update_attribute)
217217
except ApiException as e:
218218
print("Exception when calling AttributesApi->update_attribute: %s\n" % e)

0 commit comments

Comments
 (0)