PHP code example of drzippie / pivotal-tracker-api
1. Go to this page and download the library: Download drzippie/pivotal-tracker-api 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/ */
drzippie / pivotal-tracker-api example snippets
$pivotalTracker = new \PivotalTrackerV5\Client( $apiToken , $projectId ) ;
$storyList = $pivotalTracker->getStories( 'label:test') ;
$story = array(
'name' => 'A Brand New Story',
'story_type' => 'feature',
'description' => 'A small description',
'labels' => array(
array(
'name' => 'test'
)
)
);
$result = $pivotalTracker->addStory( $story ) ;