itbmedia/kund24-api-php
最新稳定版本:v2.2.5
Composer 安装命令:
composer require itbmedia/kund24-api-php
包简介
Integrate Kund24 Api
README 文档
README
In your admin screen of https://www.kund24.se/ you can generate an API Key for your account to integrate with your CRM
Installation through composer
This package can be installed through composer
See https://getcomposer.org/ for more information and documentation.
Install it by running composer require itbmedia/kund24-api-php
Usage through regular PHP
<?php
require_once("path/to/dir/vendor/autoload.php");
$client = new \Kund24\Api\Client(YOUR_ACCOUNT_ID, 'YOUR_API_KEY');
$contact = new \Kund24\Api\Models\Contact();
$contact->setEmail('lars2000@gmail.com')
->setFirstName('Fredrik')
->setLastName('Bengtsson')
->setCompany('ITB Media')
->addMetafield(new \Kund24\Api\Models\ContactMetafield('favorite_food', 'pizza'));
;
$deal = new \Kund24\Api\Models\Deal();
$deal->setValue(500)
->setTitle('Lead från hemsida')
->setSource('Hemsida')
->setStage('Leads')
->setContact($contact)
;
$deal = $client->createDeal($deal);
统计信息
- 总下载量: 2.77k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: proprietary
- 更新时间: 2019-06-04