Skip to content

Getting Started

Sanif Himani edited this page Jul 30, 2024 · 4 revisions

Installation

To install the gem, run the following command in your terminal:

gem install monday_ruby

Configuration

Before you can start using the library, you need to configure it with your Monday.com Auth token:

require 'monday_ruby'

client = Monday::Client.new(token: <AUTH_TOKEN>)

First Request

Let’s make your first API call to retrieve your account:

response = client.account.query

puts response.body

Next Steps

Now that you’ve made your first API call consider further customizing your setup:

  • Review the Configuration options to tailor the library to your needs.
  • Explore the Client Documentation for advanced usage.
  • Refer to the links in the sidebar for detailed guidance on specific API resources like boards and items.

Clone this wiki locally