magicalella / yii2-salesmanago

SALESmanago component for Yii 2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

yii2-salesmanago

Salesmanago component for Yii 2 framework

SALESmanago Technical API Documentation

Installation

The preferred way to install this extension is through composer.

Run

composer require "magicalella/yii2-salesmanago" "*"

or add

"magicalella/yii2-salesmanago": "*"

to the require section of your composer.json file.

Usage

  1. Add component to your config file
'components' => [
    // ...
    'salesmanago' => [
        'class' => 'magicalella\salesmanago\Salesmanago',
        'clientId' => 'xxxxxx',
        'apiKey' => 'xxxxxx',
        'apiSecret' => 'xxxxxx',
        'endpoint' => 'xxxxxx',
        'owner' => 'xxxxxx',
    ],
]
  1. Add new contact to SALESmanago
$salesmanago = Yii::$app->salesmanago;
$result = $salesmanago->call('contact/upsert',[
    contact' => [
        'email' => 'example@example.com',
        'state' => 'CUSTOMER',
    ],
    'owner' => 'owner@owner.com',
    'tags' => [
        'TAG'
    ],
    'properties' => array('page' => 'newsletter'),
    'lang' => 'PL',
    'useApiDoubleOptIn' => true,
    'forceOptIn' => true,
    'forceOptOut' => false,
    'forcePhoneOptIn' => true,
    'forcePhoneOptOut' => false
    ]
);

Check SALESmanago Technical API Documentation for all available options.

About

SALESmanago component for Yii 2

License:MIT License


Languages

Language:PHP 100.0%