mrstroz/yii2-salesmanago

Salesmanago component for Yii 2 framework

Installs: 38

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 1

Open Issues: 0

Type:yii2-extension

0.0.3 2017-11-29 17:11 UTC

This package is auto-updated.

Last update: 2024-04-26 01:17:04 UTC


README

Salesmanago component for Yii 2 framework

SALESmanago Technical API Documentation

Installation

The preferred way to install this extension is through composer.

Run

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

or add

"mrstroz/yii2-salesmanago": "*"

to the require section of your composer.json file.

Usage

  1. Add component to your config file
'components' => [
    // ...
    'salesmanago' => [
        'class' => 'mrstroz\salesmanago\Salesmanago',
        'clientId' => 'xxxxxx',
        'apiKey' => 'xxxxxx',
        'apiSecret' => '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.