I am trying to work on a client that would talk to a JIRA instance and take my own spin off a Kamban (or Scrum) agile board, in which cards are moved between different lanes during the project's duration.
Is there something that can either:
1: Consume the contents of an Agile board, or
2: Allow changes such as moving a card between swimlanes?
Thanks,
Hi Jonathan,
You can query Agile boards via REST, here are some example queries:
View a Sprint:
curl -u <user>:<pass> -X GET "https://<instance>/rest/greenhopper/1.0/rapid/charts/sprintreport?rapidViewId=<id>&sprintId=<id>"
View a Rapidboard ID:
curl -D- -u <user>:<pass> -X GET -H "Content-Type: application/json" https://<instance>/rest/greenhopper/1.0/sprintquery/<id>
View all Boards:
curl -D- -u <user>:<pass> -X GET -H "Content-Type: application/json" https://<instance>/rest/greenhopper/1.0/rapidview
Updating an issue status through REST API will update an issue on a board. Here is the REST documentation: https://docs.atlassian.com/jira/REST/latest/#id164500
For further references you can check: the https://developer.atlassian.com/display/JIRADEV/JIRA+Agile+Java+API+Reference
Cheers,
Paul
Question: would you happen to know what the sample calls you gave would look like in iOS Objective-C?
Thanks,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jonathan,
While I cannot confirm the results I've found the following examples (with answers) for methods of converting a curl command to Objective-C:
http://stackoverflow.com/questions/8982707/converting-a-curl-command-for-objective-c
and
http://stackoverflow.com/questions/11451205/objective-c-equivalent-of-curl-request
Hope it helps :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.