Alternatives To Jira Rest
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Atlassian Python Api1,02054410 days ago239May 25, 2022163apache-2.0Python
Atlassian Python REST API wrapper
Jira Ruby6211,045612 months ago44January 23, 202182mitRuby
A Ruby gem for the JIRA REST API
Php Jira Rest Client47932202 months ago137October 03, 202210otherPHP
PHP classes interact Jira with the REST API.
Node Jira Client39386765 months ago57March 08, 202233mitJavaScript
A Node.js wrapper for the Jira REST API
Node Jira379183454 years ago23September 06, 201476JavaScript
A nodejs wrapper for the JIRA REST API
Jira Connector36090633 years ago47December 18, 201929mitJavaScript
NodeJS Wrapper for the Jira REST API
Jiraps281
7 months ago112mitPowerShell
PowerShell module to interact with Atlassian JIRA
Jira Api Restclient21953146 months ago1July 27, 201450mitPHP
php JIRA REST API
Jira.js192176 days ago71January 09, 20234mitTypeScript
A JavaScript/TypeScript wrapper for the JIRA Cloud, Service Desk and Agile REST API
Camunda Excamad191
9 months ago12gpl-3.0Vue
External camunda admin portal, which make live in multi-camunda`s environment much easy #camunda
Alternatives To Jira Rest
Select To Compare


Alternative Project Comparisons
Readme

jira-rest

Gem Version Build Status Code Climate Dependency Status Coverage Status

Installation

Add this line to your application's Gemfile:

gem 'jirarest'

And then execute:

$ bundle

Or install it yourself as:

$ gem install jira-rest

Usage

require 'jira-rest'

@jira = JiraRest::Client.new(jira_host, username, password)

Query by hash

hash_query = {:project => 'DEMO', :status => '"in progress", Open'}
@jira.search.query_by_hash(hash_query)

optional:
@jira.search.query_by_hash(hash_query, return_fields, maxresults)

Query by jql string

jql_query = "project in (DEMO) AND status in ("in progress", Open)"
@jira.search.jqlquery(jql_query)

optional:
@jira.search.jqlquery(jql_query, return_fields, maxresults)

Search by issue key

@jira.search.issue "JRA-9"

Get filter issues

@jira.search.filter "12843"

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request
gem 'jirarest'

And then execute:

$ bundle

Or install it yourself as:

$ gem install jira-rest

Usage

require 'jira-rest'

@jira = JiraRest::Client.new(jira_host, username, password)

Query by hash

hash_query = {:project => 'DEMO', :status => '"in progress", Open'}
@jira.search.query_by_hash(hash_query)

optional:
@jira.search.query_by_hash(hash_query, return_fields, maxresults)

Query by jql string

jql_query = "project in (DEMO) AND status in ("in progress", Open)"
@jira.search.jqlquery(jql_query)

optional:
@jira.search.jqlquery(jql_query, return_fields, maxresults)

Search by issue key

@jira.search.issue "JRA-9"

Get filter issues

@jira.search.filter "12843"

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request
Popular Rest Projects
Popular Jira Projects
Popular Application Programming Interfaces Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Ruby
Rest
Hash
Jira