module ZoomUs

#Zoom API

#The Zoom API allows developers to safely and securely access information from Zoom. You can use this API to build private services or public applications on the [Zoom App Marketplace](marketplace.zoom.us). To learn how to get your credentials and create private/public applications, read our [Authorization Guide](marketplace.zoom.us/docs/guides/authorization/credentials). All endpoints are available via `https` and are located at `api.zoom.us/v2/`. For instance you can list all users on an account via `api.zoom.us/v2/users/`.

OpenAPI spec version: 2.0.0 Contact: developersupport@zoom.us Generated by: github.com/swagger-api/swagger-codegen.git Swagger Codegen version: 2.4.12

#Zoom API

#The Zoom API allows developers to safely and securely access information from Zoom. You can use this API to build private services or public applications on the [Zoom App Marketplace](marketplace.zoom.us). To learn how to get your credentials and create private/public applications, read our [Authorization Guide](marketplace.zoom.us/docs/guides/authorization/credentials). All endpoints are available via `https` and are located at `api.zoom.us/v2/`. For instance you can list all users on an account via `api.zoom.us/v2/users/`.

OpenAPI spec version: 2.0.0 Contact: developersupport@zoom.us Generated by: github.com/swagger-api/swagger-codegen.git Swagger Codegen version: 2.4.12

#Zoom API

#The Zoom API allows developers to safely and securely access information from Zoom. You can use this API to build private services or public applications on the [Zoom App Marketplace](marketplace.zoom.us). To learn how to get your credentials and create private/public applications, read our [Authorization Guide](marketplace.zoom.us/docs/guides/authorization/credentials). All endpoints are available via `https` and are located at `api.zoom.us/v2/`. For instance you can list all users on an account via `api.zoom.us/v2/users/`.

OpenAPI spec version: 2.0.0 Contact: developersupport@zoom.us Generated by: github.com/swagger-api/swagger-codegen.git Swagger Codegen version: 2.4.12

Constants

VERSION

Public Class Methods

configure() { |default| ... } click to toggle source

Customize default settings for the SDK using block.

ZoomUs.configure do |config|
  config.username = "xxx"
  config.password = "xxx"
end

If no block given, return the default Configuration object.

# File lib/zoom_us.rb, line 58
def configure
  if block_given?
    yield(Configuration.default)
  else
    Configuration.default
  end
end