Sha256: 96c9b3141de221f97865c045a57091c5e05eeb04d90b99dc0af1fba49f66503e
Contents?: true
Size: 766 Bytes
Versions: 1
Compression:
Stored size: 766 Bytes
Contents
# Configuration To interact with the API, you must provide a valid auth token. This token can be generated from the Administration tab on the account. For more authentication information, please look at monday.com's [API documentation](https://developer.monday.com/api-reference/docs/authentication). Once you have the authentication token, you can either globally configure the library or you can configure a specific client. ### Global To configure the library globally, you can do the following: ```ruby require "monday_ruby" Monday.configure do |config| config.token = <AUTH_TOKEN> end ``` ### Client specific config To configure a client, you can do the following: ```ruby require "monday_ruby" client = Monday::Client.new(token: <AUTH_TOKEN>) ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
monday_ruby-0.2.0 | docs/configuration.md |