PHP code example of 3xw / cakephp-bexio
1. Go to this page and download the library: Download 3xw/cakephp-bexio library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
3xw / cakephp-bexio example snippets
'Datasources' => [
'click_up' => [
'className' => 'Muffin\Webservice\Connection',
'service' => 'Trois/Bexio.ClickUp',
'token' => 'pk_***'
],
//..
]
$this->loadModel('Trois/Bexio.Tasks', 'Endpoint');
debug($this->Tasks->find()->where(['listId' => 'xxx'])->toArray());
debug($this->Tasks->find()->where(['taskId' => 'xxx'])->toArray());