Skip to content

Commit

Permalink
Merge pull request #15 from sendinblue/wrapperUpdate2.1.1
Browse files Browse the repository at this point in the history
Wrapper update2.1.1
  • Loading branch information
amitsendinblue authored May 21, 2020
2 parents d708ff4 + 0bb1b9e commit fa7116b
Show file tree
Hide file tree
Showing 82 changed files with 1,929 additions and 915 deletions.
131 changes: 68 additions & 63 deletions README.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/AccountApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ All URIs are relative to *https://api.sendinblue.com/v3*

Method | HTTP request | Description
------------- | ------------- | -------------
[**GetAccount**](AccountApi.md#getaccount) | **GET** /account | Get your account informations, plans and credits details
[**GetAccount**](AccountApi.md#getaccount) | **GET** /account | Get your account information, plan and credits details


<a name="getaccount"></a>
# **GetAccount**
> GetAccount GetAccount ()
Get your account informations, plans and credits details
Get your account information, plan and credits details

### Example
```csharp
Expand Down Expand Up @@ -40,7 +40,7 @@ namespace Example

try
{
// Get your account informations, plans and credits details
// Get your account information, plan and credits details
GetAccount result = apiInstance.GetAccount();
Debug.WriteLine(result);
}
Expand Down
2 changes: 1 addition & 1 deletion docs/AddContactToList.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Emails** | **List&lt;string&gt;** | Emails to add to a list | [optional]
**Emails** | **List&lt;string&gt;** | 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]

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

24 changes: 12 additions & 12 deletions docs/AttributesApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ All URIs are relative to *https://api.sendinblue.com/v3*

Method | HTTP request | Description
------------- | ------------- | -------------
[**CreateAttribute**](AttributesApi.md#createattribute) | **POST** /contacts/attributes/{attributeCategory}/{attributeName} | Creates contact attribute
[**DeleteAttribute**](AttributesApi.md#deleteattribute) | **DELETE** /contacts/attributes/{attributeCategory}/{attributeName} | Deletes an attribute
[**GetAttributes**](AttributesApi.md#getattributes) | **GET** /contacts/attributes | Lists all attributes
[**UpdateAttribute**](AttributesApi.md#updateattribute) | **PUT** /contacts/attributes/{attributeCategory}/{attributeName} | Updates contact attribute
[**CreateAttribute**](AttributesApi.md#createattribute) | **POST** /contacts/attributes/{attributeCategory}/{attributeName} | Create contact attribute
[**DeleteAttribute**](AttributesApi.md#deleteattribute) | **DELETE** /contacts/attributes/{attributeCategory}/{attributeName} | Delete an attribute
[**GetAttributes**](AttributesApi.md#getattributes) | **GET** /contacts/attributes | List all attributes
[**UpdateAttribute**](AttributesApi.md#updateattribute) | **PUT** /contacts/attributes/{attributeCategory}/{attributeName} | Update contact attribute


<a name="createattribute"></a>
# **CreateAttribute**
> void CreateAttribute (string attributeCategory, string attributeName, CreateAttribute createAttribute)
Creates contact attribute
Create contact attribute

### Example
```csharp
Expand Down Expand Up @@ -46,7 +46,7 @@ namespace Example
try
{
// Creates contact attribute
// Create contact attribute
apiInstance.CreateAttribute(attributeCategory, attributeName, createAttribute);
}
catch (Exception e)
Expand Down Expand Up @@ -85,7 +85,7 @@ void (empty response body)
# **DeleteAttribute**
> void DeleteAttribute (string attributeCategory, string attributeName)
Deletes an attribute
Delete an attribute

### Example
```csharp
Expand Down Expand Up @@ -116,7 +116,7 @@ namespace Example
try
{
// Deletes an attribute
// Delete an attribute
apiInstance.DeleteAttribute(attributeCategory, attributeName);
}
catch (Exception e)
Expand Down Expand Up @@ -154,7 +154,7 @@ void (empty response body)
# **GetAttributes**
> GetAttributes GetAttributes ()
Lists all attributes
List all attributes

### Example
```csharp
Expand Down Expand Up @@ -183,7 +183,7 @@ namespace Example

try
{
// Lists all attributes
// List all attributes
GetAttributes result = apiInstance.GetAttributes();
Debug.WriteLine(result);
}
Expand Down Expand Up @@ -218,7 +218,7 @@ This endpoint does not need any parameter.
# **UpdateAttribute**
> void UpdateAttribute (string attributeCategory, string attributeName, UpdateAttribute updateAttribute)
Updates contact attribute
Update contact attribute

### Example
```csharp
Expand Down Expand Up @@ -250,7 +250,7 @@ namespace Example
try
{
// Updates contact attribute
// Update contact attribute
apiInstance.UpdateAttribute(attributeCategory, attributeName, updateAttribute);
}
catch (Exception e)
Expand Down
Loading

0 comments on commit fa7116b

Please sign in to comment.