Jira Api Restclient

Alternatives To Jira Api Restclient
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Atlassian Python Api1,0645445 days ago239May 25, 2022178apache-2.0Python
Atlassian Python REST API wrapper
Jira Ruby6211,045614 months ago44January 23, 202182mitRuby
A Ruby gem for the JIRA REST API
Php Jira Rest Client487322021 days ago137October 03, 202212otherPHP
PHP classes interact Jira with the REST API.
Node Jira Client39386767 months ago57March 08, 202233mitJavaScript
A Node.js wrapper for the Jira REST API
Node Jira379183455 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
9 months ago112mitPowerShell
PowerShell module to interact with Atlassian JIRA
Jira Api Restclient21953148 months ago1July 27, 201450mitPHP
php JIRA REST API
Camunda Excamad217
2 months ago18gpl-3.0Vue
External camunda admin portal, which make live in multi-camunda`s environment much easy #camunda
Jira.js204172 days ago71January 09, 20239mitTypeScript
A JavaScript/TypeScript wrapper for the JIRA Cloud, Service Desk and Agile REST API
Alternatives To Jira Api Restclient
Select To Compare


Alternative Project Comparisons
Readme

Jira REST API Client

CI

You all know that Jira supports REST API, right? It can be very useful, for example, during automation job creation and notification sending.

This library will ensure unforgettable experience when working with Jira through REST API. Hope you'll enjoy it.

Usage

<?php
use chobie\Jira\Api;
use chobie\Jira\Api\Authentication\Basic;
use chobie\Jira\Issues\Walker;

$api = new Api(
    'https://your-jira-project.net',
    new Basic('yourname', 'password')
);

$walker = new Walker($api);
$walker->push(
	'project = "YOURPROJECT" AND (status != "closed" AND status != "resolved") ORDER BY priority DESC'
);

foreach ( $walker as $issue ) {
    var_dump($issue);
    // Send custom notification here.
}

Installation

php composer.phar require chobie/jira-api-restclient ^[email protected]

Requirements

License

Jira REST API Client is released under the MIT License. See the bundled LICENSE file for details.

Popular Rest Projects
Popular Jira Projects
Popular Application Programming Interfaces Categories
Related Searches

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