Skip to content

Merge #87

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
614 changes: 307 additions & 307 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/AbTestCampaignResult.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SibApiV3Sdk.AbTestCampaignResult
# PakatApiV3Sdk.AbTestCampaignResult

## Properties
Name | Type | Description | Notes
Expand Down
2 changes: 1 addition & 1 deletion docs/AbTestCampaignResultClickedLinks.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SibApiV3Sdk.AbTestCampaignResultClickedLinks
# PakatApiV3Sdk.AbTestCampaignResultClickedLinks

## Properties
Name | Type | Description | Notes
Expand Down
2 changes: 1 addition & 1 deletion docs/AbTestCampaignResultStatistics.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SibApiV3Sdk.AbTestCampaignResultStatistics
# PakatApiV3Sdk.AbTestCampaignResultStatistics

## Properties
Name | Type | Description | Notes
Expand Down
2 changes: 1 addition & 1 deletion docs/AbTestVersionClicks.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SibApiV3Sdk.AbTestVersionClicks
# PakatApiV3Sdk.AbTestVersionClicks

## Properties
Name | Type | Description | Notes
Expand Down
2 changes: 1 addition & 1 deletion docs/AbTestVersionClicksInner.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SibApiV3Sdk.AbTestVersionClicksInner
# PakatApiV3Sdk.AbTestVersionClicksInner

## Properties
Name | Type | Description | Notes
Expand Down
2 changes: 1 addition & 1 deletion docs/AbTestVersionStats.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SibApiV3Sdk.AbTestVersionStats
# PakatApiV3Sdk.AbTestVersionStats

## Properties
Name | Type | Description | Notes
Expand Down
8 changes: 4 additions & 4 deletions docs/AccountApi.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SibApiV3Sdk.AccountApi
# PakatApiV3Sdk.AccountApi

All URIs are relative to *https://api.sendinblue.com/v3*

Expand All @@ -15,8 +15,8 @@ Get your account information, plan and credits details

### Example
```javascript
var SibApiV3Sdk = require('sib-api-v3-sdk');
var defaultClient = SibApiV3Sdk.ApiClient.instance;
var PakatApiV3Sdk = require('sib-api-v3-sdk');
var defaultClient = PakatApiV3Sdk.ApiClient.instance;

// Configure API key authorization: api-key
var apiKey = defaultClient.authentications['api-key'];
Expand All @@ -30,7 +30,7 @@ partnerKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//partnerKey.apiKeyPrefix = 'Token';

var apiInstance = new SibApiV3Sdk.AccountApi();
var apiInstance = new PakatApiV3Sdk.AccountApi();
apiInstance.getAccount().then(function(data) {
console.log('API called successfully. Returned data: ' + data);
}, function(error) {
Expand Down
2 changes: 1 addition & 1 deletion docs/AddChildDomain.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SibApiV3Sdk.AddChildDomain
# PakatApiV3Sdk.AddChildDomain

## Properties
Name | Type | Description | Notes
Expand Down
2 changes: 1 addition & 1 deletion docs/AddContactToList.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SibApiV3Sdk.AddContactToList
# PakatApiV3Sdk.AddContactToList

## Properties
Name | Type | Description | Notes
Expand Down
2 changes: 1 addition & 1 deletion docs/AddCredits.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SibApiV3Sdk.AddCredits
# PakatApiV3Sdk.AddCredits

## Properties
Name | Type | Description | Notes
Expand Down
30 changes: 15 additions & 15 deletions docs/AttributesApi.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SibApiV3Sdk.AttributesApi
# PakatApiV3Sdk.AttributesApi

All URIs are relative to *https://api.sendinblue.com/v3*

Expand All @@ -18,8 +18,8 @@ Create contact attribute

### Example
```javascript
var SibApiV3Sdk = require('sib-api-v3-sdk');
var defaultClient = SibApiV3Sdk.ApiClient.instance;
var PakatApiV3Sdk = require('sib-api-v3-sdk');
var defaultClient = PakatApiV3Sdk.ApiClient.instance;

// Configure API key authorization: api-key
var apiKey = defaultClient.authentications['api-key'];
Expand All @@ -33,13 +33,13 @@ partnerKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//partnerKey.apiKeyPrefix = 'Token';

var apiInstance = new SibApiV3Sdk.AttributesApi();
var apiInstance = new PakatApiV3Sdk.AttributesApi();

var attributeCategory = "attributeCategory_example"; // String | Category of the attribute

var attributeName = "attributeName_example"; // String | Name of the attribute

var createAttribute = new SibApiV3Sdk.CreateAttribute(); // CreateAttribute | Values to create an attribute
var createAttribute = new PakatApiV3Sdk.CreateAttribute(); // CreateAttribute | Values to create an attribute

apiInstance.createAttribute(attributeCategory, attributeName, createAttribute).then(function() {
console.log('API called successfully.');
Expand Down Expand Up @@ -78,8 +78,8 @@ Delete an attribute

### Example
```javascript
var SibApiV3Sdk = require('sib-api-v3-sdk');
var defaultClient = SibApiV3Sdk.ApiClient.instance;
var PakatApiV3Sdk = require('sib-api-v3-sdk');
var defaultClient = PakatApiV3Sdk.ApiClient.instance;

// Configure API key authorization: api-key
var apiKey = defaultClient.authentications['api-key'];
Expand All @@ -93,7 +93,7 @@ partnerKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//partnerKey.apiKeyPrefix = 'Token';

var apiInstance = new SibApiV3Sdk.AttributesApi();
var apiInstance = new PakatApiV3Sdk.AttributesApi();

var attributeCategory = "attributeCategory_example"; // String | Category of the attribute

Expand Down Expand Up @@ -135,8 +135,8 @@ List all attributes

### Example
```javascript
var SibApiV3Sdk = require('sib-api-v3-sdk');
var defaultClient = SibApiV3Sdk.ApiClient.instance;
var PakatApiV3Sdk = require('sib-api-v3-sdk');
var defaultClient = PakatApiV3Sdk.ApiClient.instance;

// Configure API key authorization: api-key
var apiKey = defaultClient.authentications['api-key'];
Expand All @@ -150,7 +150,7 @@ partnerKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//partnerKey.apiKeyPrefix = 'Token';

var apiInstance = new SibApiV3Sdk.AttributesApi();
var apiInstance = new PakatApiV3Sdk.AttributesApi();
apiInstance.getAttributes().then(function(data) {
console.log('API called successfully. Returned data: ' + data);
}, function(error) {
Expand Down Expand Up @@ -183,8 +183,8 @@ Update contact attribute

### Example
```javascript
var SibApiV3Sdk = require('sib-api-v3-sdk');
var defaultClient = SibApiV3Sdk.ApiClient.instance;
var PakatApiV3Sdk = require('sib-api-v3-sdk');
var defaultClient = PakatApiV3Sdk.ApiClient.instance;

// Configure API key authorization: api-key
var apiKey = defaultClient.authentications['api-key'];
Expand All @@ -198,13 +198,13 @@ partnerKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//partnerKey.apiKeyPrefix = 'Token';

var apiInstance = new SibApiV3Sdk.AttributesApi();
var apiInstance = new PakatApiV3Sdk.AttributesApi();

var attributeCategory = "attributeCategory_example"; // String | Category of the attribute

var attributeName = "attributeName_example"; // String | Name of the existing attribute

var updateAttribute = new SibApiV3Sdk.UpdateAttribute(); // UpdateAttribute | Values to update an attribute
var updateAttribute = new PakatApiV3Sdk.UpdateAttribute(); // UpdateAttribute | Values to update an attribute

apiInstance.updateAttribute(attributeCategory, attributeName, updateAttribute).then(function() {
console.log('API called successfully.');
Expand Down
Loading