Sha256: 1d3ba2c52c5b7e9d29ad47fe054471a026eafb63b693106cddc3d3f964e50f60

Contents?: true

Size: 1.08 KB

Versions: 1

Compression:

Stored size: 1.08 KB

Contents

# Zoomus Gem

Ruby wrapper gem for zoom.us API v1.

## Installation

Add this line to your application's Gemfile:

    gem 'zoomus'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install zoomus

## Available actions

- user/create
- user/custcreate
- user/list
- meeting/create
- meeting/delete
- meeting/list
- meeting/update
- report/getaccountreport
- report/getuserreport

## Example

    require 'zoomus'

    Zoomus.configure do |c|
      c.api_key = 'xxx'
      c.api_secret = 'xxx'
    end

    zoomus_client = Zoomus.new

    user_list = zoomus_client.user_list
    user_list['users'].each do |user|
      user_id = u['id']
      puts zoomus_client.meeting_list(:host_id => user_id)
    end

    begin
      user_list = zoomus_client.user_list!
    rescue Zoomus::Error => exception
      puts 'Something went wrong'
    end


## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
zoomus-0.2.0 README.md