PHP code example of kevinem / guidestar-quickstart-php
1. Go to this page and download the library: Download kevinem/guidestar-quickstart-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/ */
kevinem / guidestar-quickstart-php example snippets
$quickStartDetail = new QuickStartDetail(new \GuzzleHttp\Client(), ['apiKey' => 'your_api_key']);
$quickStartDetail->getOrganizationDetail(7831216);
$quickStartDetail = new QuickStartDetail(new \GuzzleHttp\Client(), ['username' => 'your_username', 'password' => 'your_password']);
$quickStartDetail->getOrganizationDetail(7831216);
$quickStartSearch = new QuickStartSearch(new \GuzzleHttp\Client(), ['apiKey' => 'your_api_key']);
$quickStartSearch->searchEIN('54-1774039');
composer