定制 itbmedia/kund24-api-php 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: proprietary
  • 更新时间: 2019-06-04