-
Notifications
You must be signed in to change notification settings - Fork 11
Getting Started
Sanif Himani edited this page Jul 30, 2024
·
4 revisions
To install the gem, run the following command in your terminal:
gem install monday_rubyBefore 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>)Let’s make your first API call to retrieve your account:
response = client.account.query
puts response.bodyNow 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.
Repository · Issues · Contributing · License
- Home
- Getting Started
- Quick Start Guide
- Configuration
- Client Usage
- Response
- Error Handling
- Migrating from 0.x to 1.x
- Boards
- Create Board
- Duplicate Board
- Update Board
- Archive Board
- Delete Board
- Delete Board Subscribers