Download the PHP package ciaranpflanagan/webinarjam-api without Composer
On this page you can find all versions of the php package ciaranpflanagan/webinarjam-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ciaranpflanagan/webinarjam-api
More information about ciaranpflanagan/webinarjam-api
Files in ciaranpflanagan/webinarjam-api
Package webinarjam-api
Short Description WebinarJam API Wrapper
License
Homepage https://github.com/ciaranpflanagan/WebinarJam
Informations about the package webinarjam-api
WebinarJam Composer Package
A composer package that makes it easier to communicate with the WebinarJam API.
Installation
Add the service provider to your config/app.php
providers array
Usage
Include the package so it can be used
Create a new instance of the WebinarJam class, passing in your WebinarJam API key. More can be found on obtaining your API key in the WebinarJam API Documentation.
List All Webinars
To get a full list of webinars. This returns an array with the response from the API.
Output
Details About An Individual Webinar
To get details about one individual webinar (including it's schedules). This returns an array with the response from the API.
Output
Register A Person To A Webinar
To register a person to a webinar. This returns an array with the response from the API.
Note: $webinar_id
and $schedule
are of type int
.
Output
Get A Webinar's Schedule
To get a webinars schedule. This returns an array with the response from the API.
NOTE: If ->webinarDetails($webinar_id)
is has already been called, ->webinarSchedule()
can be called with no parameters and it will get the schedule using the same webinar ID used in ->webinarDetails($webinar_id)
.