{"id":15798118,"url":"https://github.com/grokify/lita-zendesk","last_synced_at":"2025-04-21T08:31:47.422Z","repository":{"id":56881653,"uuid":"66956340","full_name":"grokify/lita-zendesk","owner":"grokify","description":"A Zendesk handler for the Lita chatbot","archived":false,"fork":false,"pushed_at":"2016-09-12T17:59:42.000Z","size":16,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-10-12T00:50:01.038Z","etag":null,"topics":["chatbot","lita-handler","ruby","zendesk"],"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/grokify.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-08-30T16:02:48.000Z","updated_at":"2017-08-20T10:58:47.000Z","dependencies_parsed_at":"2022-08-21T00:50:10.200Z","dependency_job_id":null,"html_url":"https://github.com/grokify/lita-zendesk","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grokify%2Flita-zendesk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grokify%2Flita-zendesk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grokify%2Flita-zendesk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grokify%2Flita-zendesk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/grokify","download_url":"https://codeload.github.com/grokify/lita-zendesk/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250023525,"owners_count":21362414,"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","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":["chatbot","lita-handler","ruby","zendesk"],"created_at":"2024-10-05T00:23:42.859Z","updated_at":"2025-04-21T08:31:47.134Z","avatar_url":"https://github.com/grokify.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"Lita Zendesk Handler\n====================\n\n[![Gem Version][gem-version-svg]][gem-version-link]\n[![Build Status][build-status-svg]][build-status-link]\n[![Coverage Status][coverage-status-svg]][coverage-status-link]\n[![Dependency Status][dependency-status-svg]][dependency-status-link]\n[![Code Climate][codeclimate-status-svg]][codeclimate-status-link]\n[![Scrutinizer Code Quality][scrutinizer-status-svg]][scrutinizer-status-link]\n[![Downloads][downloads-svg]][downloads-link]\n[![Docs][docs-rubydoc-svg]][docs-rubydoc-link]\n[![License][license-svg]][license-link]\n\n`lita-zendesk` is a handler for [Lita](https://www.lita.io/) that allows you to use the robot with [Zendesk](https://zendesk.com/) ticket queries.\n\n## Installation\n\nAdd `lita-zendesk` to your Lita instance's Gemfile:\n\n``` ruby\ngem \"lita-zendesk\"\n```\n\n## Configuration\n\nBoth Token and Password authentication are supported.\n\n``` ruby\nLita.configure do |config|\n\n  # Zendesk user info\n  config.handlers.zendesk.subdomain = 'my_zendesk_subdomain'\n  config.handlers.zendesk.username = 'my_zendesk_username'\n  config.handlers.zendesk.token = 'my_zendesk_token'       # Use token or password\n  config.handlers.zendesk.password = 'my_zendesk_password' # Use token or password\n\nend\n```\n\n## Usage\n\n`zd` or `zendesk` both work for triggering the handler.\n\n```\nLita \u003e @lita help\nLita: zd connection - returns information on the Zendesk connection\nLita: zd search tickets \u003cQUERY\u003e - returns search results\nLita: zd tickets - returns the total count of all unsolved tickets\nLita: zd all tickets - returns the count of all tickets\nLita: zd pending tickets - returns a count of tickets that are pending\nLita: zd new tickets - returns the count of all new (unassigned) tickets\nLita: zd escalated tickets - returns a count of tickets with escalated tag that are open or pending\nLita: zd open tickets - returns the count of all open tickets\nLita: zd on hold tickets - returns the count of all on hold tickets\nLita: zd list tickets - returns a list of unsolved tickets\nLita: zd list all tickets - returns a list of all tickets\nLita: zd list pending tickets - returns a list of pending tickets\nLita: zd list new tickets - returns a list of new tickets\nLita: zd list esclated tickets - returns a list of escalated tickets\nLita: zd list open tickets - returns a list of open tickets\nLita: zd list on hold tickets - returns a list of on hold tickets\nLita: zd ticket \u003cID\u003e - returns information about the specified ticket\n```\n\n## Change Log\n\nSee [CHANGELOG.md](CHANGELOG.md)\n\n## Links\n\nProject Repo\n\n* https://github.com/grokify/lita-zendesk\n\nLita\n\n* https://www.lita.io/\n\nZendesk Search API\n\n* https://developer.zendesk.com/rest_api/docs/core/search\n\nPorted and enhanced from `hubot-scripts/zendesk.coffee`:\n\n* https://github.com/github/hubot-scripts/blob/master/src/scripts/zendesk.coffee\n\n## Contributing\n\n1. Fork it ( http://github.com/grokify/lita-zendesk/fork )\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create new Pull Request\n\n## License\n\nLita Zendesk Handler is available under the MIT license. See [LICENSE.txt](LICENSE.txt) for details.\n\nLita Zendesk Handler \u0026copy; 2016 by John Wang\n\n [gem-version-svg]: https://badge.fury.io/rb/lita-zendesk.svg\n [gem-version-link]: http://badge.fury.io/rb/lita-zendesk\n [downloads-svg]: http://ruby-gem-downloads-badge.herokuapp.com/lita-zendesk\n [downloads-link]: https://rubygems.org/gems/lita-zendesk\n [build-status-svg]: https://api.travis-ci.org/grokify/lita-zendesk.svg?branch=master\n [build-status-link]: https://travis-ci.org/grokify/lita-zendesk\n [coverage-status-svg]: https://coveralls.io/repos/grokify/lita-zendesk/badge.svg?branch=master\n [coverage-status-link]: https://coveralls.io/r/grokify/lita-zendesk?branch=master\n [dependency-status-svg]: https://gemnasium.com/grokify/lita-zendesk.svg\n [dependency-status-link]: https://gemnasium.com/grokify/lita-zendesk\n [codeclimate-status-svg]: https://codeclimate.com/github/grokify/lita-zendesk/badges/gpa.svg\n [codeclimate-status-link]: https://codeclimate.com/github/grokify/lita-zendesk\n [scrutinizer-status-svg]: https://scrutinizer-ci.com/g/grokify/lita-zendesk/badges/quality-score.png?b=master\n [scrutinizer-status-link]: https://scrutinizer-ci.com/g/grokify/lita-zendesk/?branch=master\n [docs-rubydoc-svg]: https://img.shields.io/badge/docs-rubydoc-blue.svg\n [docs-rubydoc-link]: http://www.rubydoc.info/gems/lita-zendesk/\n [license-svg]: https://img.shields.io/badge/license-MIT-blue.svg\n [license-link]: https://github.com/grokify/lita-zendesk/blob/master/LICENSE.txt\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrokify%2Flita-zendesk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgrokify%2Flita-zendesk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrokify%2Flita-zendesk/lists"}