2017 © Pedro Peláez
 

library php-calendly

Easily Connect to the calendly api

image

zenapply/php-calendly

Easily Connect to the calendly api

  • Sunday, April 3, 2016
  • by tylercd100
  • Repository
  • 2 Watchers
  • 2 Stars
  • 1,740 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 2 Versions
  • 71 % Grown

The README.md

php-calendly

Latest Version Software License Build Status Scrutinizer Code Quality Code Coverage Dependency Status Total Downloads, (*1)

This package will let you easily register webhooks with the Calendly API, (*2)

Installation

Install via composer - In the terminal:, (*3)

composer require zenapply/php-calendly

Usage

Register a webhook for Invitee Created, (*4)

use Zenapply\Calendly\Calendly;
$c = new Calendly("Your API Token");
$response = $c->registerInviteeCreated("http://foo.com/bar/calendly");
/* When successful it will return:
[
    "id" => 1234
]
 */

Register a webhook for Invitee Canceled, (*5)

use Zenapply\Calendly\Calendly;
$c = new Calendly("Your API Token");
$response = $c->registerInviteeCanceled("http://foo.com/bar/calendly");
/* When successful it will return:
[
    "id" => 1234
]
 */

Unregister a webhook, (*6)

use Zenapply\Calendly\Calendly;
$c = new Calendly("Your API Token");
$idOfWebhook = 1234;
$response = $c->unregistered($idOfWebhook);
/* When successful it will return:
null
 */

The Versions

03/04 2016

dev-master

9999999-dev https://github.com/zenapply/php-calendly

Easily Connect to the calendly api

  Sources   Download

MIT

The Requires

 

The Development Requires

by Tyler Arbon

tylercd100 zenapply calendly

03/04 2016

1.0.0

1.0.0.0 https://github.com/zenapply/php-calendly

Easily Connect to the calendly api

  Sources   Download

MIT

The Requires

 

The Development Requires

by Tyler Arbon

tylercd100 zenapply calendly