Skip to content
Sanif Himani edited this page Apr 24, 2024 · 7 revisions

The client object is the primary way to interact with the Monday.com API. It offers all the available API actions as methods.

If the library is configured globally, initialize the client using:

client = Monday::Client.new

Or, create a new client with the auth token using:

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

Next Steps

  • Check out the Error Handling page to learn about effectively managing API responses and errors.
  • Explore specific resource pages for detailed examples and guidance on effectively using the client to manage boards, items, and columns.

Clone this wiki locally