An Effective GIT Branching Strategy
Its essential to prepare a git branching strategy. This helps greatly in…
November 10, 2017
This article shows some of common usages of JIRA rest apis.
Note: This article assumes you have a username and password for calling rest api of JIRA.
There is an API: createmeta, which gives you every possible field require to create JIRA issues.
Note: This API is pretty expensive in terms of data. It can give you complete data for all the projects. But, you might be interested in one or two projects.
curl -u "username:password" "https://jira_url/rest/api/2/issue/createmeta?projectKeys=XYZ"
Above api call will give you very limited result, which has only the issue types, and no expanded fields. But, we are interested in getting data of a custom field.
curl -u "username:password" "https://jira_url/rest/api/2/issue/createmeta?projectKeys=XYZ&expand=projects.issuetypes.fields"
Now, you are telling JIRA to return expanded fields, and now you will get values of all custom fields that appear while creating a JIRA issue in your project XYZ, and for each issuetype.
Its essential to prepare a git branching strategy. This helps greatly in…
For programmers, who want to write about their codes. Its often the first…
I wanted to fetch all image tags from a big html, and wanted to perform some…
So, here we are using input variable String[] args without any validation…
Many times, while administering your drupal website, you must have encountered…
One of the biggest task while writing article or blog is to have right set of…
In this post, we will see some of the frequently used concepts/vocabulary in…
System design interview is pretty common these days, specially if you are having…
Introduction You are given an array of integers with size N, and a number K…
Graph Topological Sorting This is a well known problem in graph world…
Problem Statement Given a Binary tree, print out nodes in level order traversal…
Problem Statement Given an array nums of n integers and an integer target, are…