PHP code example of meilleursbiens / laravel-calendly-wrapper

1. Go to this page and download the library: Download meilleursbiens/laravel-calendly-wrapper 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/ */

    

meilleursbiens / laravel-calendly-wrapper example snippets


return [
    'personal_token' => env('CALENDLY_PERSONAL_TOKEN'),
    'organization_uri' => env('CALENDLY_ORGANIZATION_URI'),
];

Calendly::users()->me();
Calendly::users()->get();

Calendly::eventTypes()->get();
Calendly::eventTypes()->forOrganization();
Calendly::eventTypes()->forUser();

Calendly::scheduledEvents()->get();
Calendly::scheduledEvents()->forOrganization();
Calendly::scheduledEvents()->forUser();
Calendly::scheduledEvents()->invitees();
Calendly::scheduledEvents()->invitee();

Calendly::memberships()->get();
Calendly::memberships()->forOrganization();
Calendly::memberships()->forUser();

Calendly::webhooks()->get();
Calendly::webhooks()->list();
Calendly::webhooks()->subscribe();
Calendly::webhooks()->unsubscribe();

php artisan vendor:publish --provider="MeilleursBiens\CalendlyServiceProvider" --tag="config"