https://github.com/morning-train/pipedrive-api
A complete native php interface for the Pipedrive API v1
https://github.com/morning-train/pipedrive-api
Last synced: 5 months ago
JSON representation
A complete native php interface for the Pipedrive API v1
- Host: GitHub
- URL: https://github.com/morning-train/pipedrive-api
- Owner: Morning-Train
- License: gpl-3.0
- Created: 2015-11-19T14:25:03.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-11-19T14:38:34.000Z (over 10 years ago)
- Last Synced: 2025-04-03T15:44:23.129Z (about 1 year ago)
- Language: PHP
- Size: 39.1 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PHP Pipedrive Api
[](LICENSE.md)

A complete native php wrapper for the [Pipedrive API](https://developers.pipedrive.com/v1)
## Install
Via Composer
``` bash
$ composer require morningtrain/pipedrive-api
```
## Usage
``` php
require 'vendor/autoload.php';
use MorningTrain\PipedriveApi\PipedriveApi;
define('PIPEDRIVE_API_KEY', 'YOUR-PIPEDRIVE-API-KEY');
$pipedrive_client = new PipedriveApi(PIPEDRIVE_API_KEY);
$result = $pipedrive_client->updateActivityType(1, [
'name' => 'type_1',
'icon_key' => 'task',
'color' => 'red',
'order_nr' => 1
]);
```
## Security
If you discover any security related issues, please email mail@morningtrain.dk instead of using the issue tracker.
## Credits
- [morningtrain.dk](http://morningtrain.dk/)
- [Mohamed Bouallegue](https://github.com/MohamedBoualleg)
## License
GNU General Public License v3.0. Please see [License File](LICENSE.md) for more information.