{"id":16064082,"url":"https://github.com/hummusonrails/monday_ruby_api_explorer","last_synced_at":"2026-05-20T05:04:17.093Z","repository":{"id":52606799,"uuid":"287926527","full_name":"hummusonrails/monday_ruby_api_explorer","owner":"hummusonrails","description":"Explore the Monday.com GraphQL API in Ruby","archived":false,"fork":false,"pushed_at":"2020-08-19T12:42:55.000Z","size":26,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-05-29T13:10:57.887Z","etag":null,"topics":["api","graphql","hacktoberfest","monday-api","ruby"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hummusonrails.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-08-16T11:02:29.000Z","updated_at":"2022-08-03T21:49:12.000Z","dependencies_parsed_at":"2022-09-03T08:21:00.303Z","dependency_job_id":null,"html_url":"https://github.com/hummusonrails/monday_ruby_api_explorer","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hummusonrails/monday_ruby_api_explorer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hummusonrails%2Fmonday_ruby_api_explorer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hummusonrails%2Fmonday_ruby_api_explorer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hummusonrails%2Fmonday_ruby_api_explorer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hummusonrails%2Fmonday_ruby_api_explorer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hummusonrails","download_url":"https://codeload.github.com/hummusonrails/monday_ruby_api_explorer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hummusonrails%2Fmonday_ruby_api_explorer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271746551,"owners_count":24813570,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-23T02:00:09.327Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","graphql","hacktoberfest","monday-api","ruby"],"created_at":"2024-10-09T05:03:17.163Z","updated_at":"2026-05-20T05:04:17.062Z","avatar_url":"https://github.com/hummusonrails.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Monday.com Ruby API Explorer\n\n![Coverage Status](https://github.com/bencgreenberg/monday_ruby_api_explorer/workflows/CI/badge.svg)\n\nThis ia a Ruby application to use the Monday.com GraphQL API (v2).\n\n## Installation\n\nTo install this application:\n\n* Clone the repository locally\n* Run `bundle install`\n\n## Usage\n\n### Authentication\n\nMonday.com requires users to authenticate using a JSON Web Token generated through the dashboard. Once you have your token, copy the `.env.example` file in the root folder of this application to `.env` and add your token as the value for the `MONDAY_TOKEN` key.\n\n### Client Instantiation\n\nYou can instantiate a Monday Client by providing your Monday JWT as an argument to `Monday::Client.new`:\n\n```ruby\nclient = Monday::Client.new(token: ENV['MONDAY_TOKEN'])\n```\n\n### Query the API\n\nTo query the Monday.com API do the following:\n\n* Build a request query either using the [Monday.com API Playground](https://israelrb.monday.com/apps/playground) or Postman.\n* You can submit a request query to the Explorer method in a Hash format, and the library will convert it for you before sending to the API.\n* Once you have a query you can execute the following:\n\n```ruby\nquery = {\n  query: \"{query { me { name } } }\"\n}\n\nclient.query.search(query)\n```\n\n### Making Updates with the API\n\nYou can update your Monday.com environment through the library by accessing methods on `client.update`:\n\n### Updating Boards\n\n* To create a board:\n\n```ruby\nclient.boards.new(\n  board_name: 'example new board',\n  board_kind: 'public'\n  )\n```\n\n* To archive a board:\n\n```ruby\nclient.boards.archive(board_id: 12345)\n```\n\n* To add subscribers to a board:\n\n```ruby\nclient.boards.subscribers.new(\n  board_id: 123456,\n  user_ids: [1223, 34567, 1234],\n  kind: 'owner'\n)\n```\n\n* To delete subcribers from a board:\n\n```ruby\nclient.boards.subscribers.remove(\n  board_id: 123456,\n  user_ids: [12345]\n)\n```\n\n## Contributing\n\nPlease feel free to offer contributions to this explorer! I try to follow the GitHub flow, which means please make a feature branch from the main branch, and when you are ready open up a pull request against the main branch with the work in your feature branch.\n\n## License\n\nThis explorer is under the [MIT License](LICENSE.txt)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhummusonrails%2Fmonday_ruby_api_explorer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhummusonrails%2Fmonday_ruby_api_explorer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhummusonrails%2Fmonday_ruby_api_explorer/lists"}