-
Notifications
You must be signed in to change notification settings - Fork 4
Companies Get
Brad Ploeger edited this page Apr 3, 2019
·
3 revisions
Load an existing Company by it's alias in Rezdy.
$rezdyApi->companies->get($companyAlias);- string: $companyAlias
- none
use Rezdy\RezdyAPI;
// Initialize the API
$rezdyAPI = new RezdyAPI('your api key');
$companyAlias = 'Some-Great-Company';
// Send the request to the API
$response = $rezdyAPI->companies->get($companyAlias);
// View the Response
echo $response;Rezdy API V1 PHP Wrapper