Apiary Powered Documentation
Sign in with Apiary account.
Welcome to the WebinarFuel API!
The WebinarFuel API uses HTTP Token to authenticate requests. You need to include your API key(Settings->API section) in the Authorization header with the Bearer authentication scheme: 'Authorization: Bearer {{API_KEY}}'.
All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail.
200 OK
- the request was successful (some API calls may return 201 instead).
201 Created
- the request was successful and a resource was created.
204 No Content
- the request was successful but there is no representation to return (i.e. the response is empty).
400 Bad Request
- the request could not be understood or was missing required parameters.
401 Unauthorized
- authentication failed or user doesn't have permissions for requested operation.
403 Forbidden
- access denied.
404 Not Found
- resource was not found.
405 Method Not Allowed
- requested method is not supported for resource.
429 Too Many Requests
- request rate limit has been reached in a given amount of time.
To preserve the integrity and reliability of the platform, our APIs have the following rate limits.
The guaranteed rate limit for common APIs is 100 requests/minute unless otherwise noted below.
When your application hits the rate limit, the API will return an API response with a HTTP status code of 429 Too Many Requests
.
The response will include the following headers:
RateLimit-Limit: 100,
RateLimit-Reset: 1585093034,
Retry-After: 34
RateLimit-Limit
- current limit of an endpoint.
RateLimit-Reset
- timestamp which provides guidance on when the API call can be retried.
Retry-After
- amount of time(in seconds) after which the API call can be retried.
Webinar attributes:
id (Number)
: Unique identifier.
name (String)
: Name.
description (String)
: Description.
time_zone (String)
: TimeZone name.
sessions (Array)
: List of sessions.
(Number)
: Unique session identifier.(String)
: Timestamp in ISO8601 format. Only exists for one time sessions and recurring sessions with exact_recurring_dates flag.(String)
: Readable scheduled datetime formatted to provided time_zone or to webinar time_zone by default.hosts (Array)
: List of hosts.
(String)
: Email.(String)
: First name.(String)
: Last name.(String)
: Bio.(Boolean)
: Webinar organizer.(String)
: Avatar url.A Collection of webinars.
Retrieve all webinars with ready state.
Returns a hash with webinars
and meta
properties. webinars
property contains an array of up to per_page
webinars with ready state. Each entry in the array is a separate Webinar object. If no other webinars are available, the resulting array is empty.meta
property contains a hash with page
, per_page
, total_items
and total_pages
properties.
sessions_limit | Number of sessions. Maximum number = 50. |
---|---|
exact_recurring | Exact dates for recurring sessions. |
time_zone | TimeZone name in which formatted_sched |
page | Page number of the results to fetch. |
per_page | The number of results per page (max 50). |
A single Webinar object with all its details
id | Numeric |
---|---|
sessions_limit | Number of sessions. Maximum number = 50. |
exact_recurring | Exact dates for recurring sessions. |
time_zone | TimeZone name in which formatted_sched |
Returns a specific Webinar with ready state.
A Collection of registrants.
Retrieve all registrants.
Returns a hash with registrants
and meta
properties. registrants
property contains an array of up to per_page
registrants. Each entry in the array is a separate Registrant object. If no other sessions are available, the resulting array is empty. meta
property contains a hash with page
, per_page
, total_items
and total_pages
properties.
A case-sensitive filter on the list based on the registrant's | |
page | Page number of the results to fetch. |
per_page | The number of results per page (max 50). |
To create a new Registrant simply provide a JSON hash of the webinar_id and registrant attributes with correct webinar_session_id
and scheduled_at
. You can get these parameters via Webinars.
If a registrant already exists, his attributes will be updated.
A single Registrant object with all its details
id | Numeric |
---|
Returns a specific Registrant.
Updates a specific Registrant.
To add tags to an existing registrant simply provide email and list of tags that must be added.
To remove tags from an existing registrant simply provide email and list of tags that must be removed.
This endpoint does not require an Authorization header. Instead, you need to provide your webinar's oneclick key(Webinar -> Settings -> OneClick Registration).
To create a new Registrant simply provide a webinar_id and registrant attributes with correct webinar_session_id
and scheduled_at
. You can get these parameters via Webinars.
If a registrant already exists, his attributes will be updated. After successfull creation redirects to webinar's thank you page if its configured.
oneclick_key | Webinar's oneclick key(Webinar -> Settings -> OneClick Registration). |
---|---|
Registrant Email. | |
first_name | Registrant First name. |
last_name | Registrant Last name. |
phone | Registrant phone. |
tags | Tags list. Correct format: ?tags[]=first_t |
custom_fields | Custom Fields. Correct format: ?custom_fields[ |
webinar_session | Webinar Session to which you want add a Registrant. |
scheduled_at |
|
time_zone | Session TimeZone name. Required if webinar timezone is 'registrant'. |
ip | Session IP address. |
referrer | Session Referrer. |
source | Session Source. |
utm_source | UTM Source. |
utm_medium | UTM Medium. |
utm_campaign | UTM Campaign. |
utm_term | UTM Term. |
utm_content | UTM Content. |
Registrant Session attributes:
cid (Number)
: Session CID.
webinar_id (Number)
: Webinar ID.
webinar_session_id (Number)
: Webinar Session ID.
registrant_id (Number)
: Registrant ID.
scheduled_at (String)
: Scheduled At time in iso8601 format.
scheduled_at_in_time_zone (String)
: Scheduled At time in time zone in iso8601 format. If webinar time_zone is "registrant" viewer session time zone will be used. If viewer session time zone is empty UTC time zone will be used. If webinar time_zone is not "registrant" webinar time zone will be used. If webinar time zone is empty account time zone will be used.
canceled (Boolean)
: Determines if the session has been canceled.
join_url (String)
: Url to join session.
replay_url (String)
: Url to join replay of the session.
encore_url (String)
: Url to join encore of the session.
calendar_urls (Object)
: List of calendar urls.
(String)
: ICS calendar url.(String)
: Google calendar url.(String)
: VCS calendar url.source (String)
: Source.
referrer (String)
: Referrer.
utm_source (String)
: UTM source.
utm_term (String)
: UTM term.
utm_campaign (String)
: UTM campaign.
utm_medium (String)
: UTM medium.
utm_content (String)
: UTM content.
time_zone (String)
: Time Zone.
province (String)
: Province.
country (String)
: Country.
country (String)
: Country.
city (String)
: City.
os (String)
: Operational System.
browser (String)
: Browser.
device (String)
: Device.
attended (Boolean)
: Determines if the session has been attended.
attended_time (Number)
: Attended time in seconds.
watched (Boolean)
: Determines if the session has been fully watched.
A Collection of registrant sessions.
Retrieve all registrant sessions.
Returns a hash with sessions
and meta
properties. sessions
property contains an array of up to per_page
sessions. Each entry in the array is a separate Session object. If no other sessions are available, the resulting array is empty. meta
property contains a hash with page
, per_page
, total_items
and total_pages
properties.
webinar_id | A filter on the list based on the object |
---|---|
webinar_session | A filter on the list based on the object |
A case-sensitive filter on the list based on the registrant's | |
before_schedule | Only sessions before or equal to this |
after_scheduled | Only sessions after or equal to this |
page | Page number of the results to fetch. |
per_page | The number of results per page (max 50). |
A single Reginstrant Session object with all its details
cid | Registrant Session |
---|
Returns a Registrant Session.