PHP code example of fromtheoutfit / bigboard-sdk-php

1. Go to this page and download the library: Download fromtheoutfit/bigboard-sdk-php 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/ */

    

fromtheoutfit / bigboard-sdk-php example snippets




// See BigBoard's service settings UI. 
// Connect an App and paste your token here:
$api_key = "<Your API Access Token Here>";

$client = new BigBoardSDK\APIClient ($api_key);

// Get My Account
$my_account = $client->getWhoAmI();
var_export ($my_account);


// Post Events
$events = array (
	array (
	    "person_id" => "[email protected]",
	    "person_label" => "Peter Gibbons",
	    "summary" => "Weekly TPS Report filed",
	    "time" => (time()-300), 
	    "label" => "TPS Reports"
	),
	array (
	    "person_id" => "[email protected]",
	    "person_label" => "Bill Lundbergh",
	    "summary" => "Report Rejected. Comment: Please 
javascript
{
    "outfit/bigboard-sdk-php": "dev-master"
    }
}