HockeyApp creating version for a JIRA project

nsoster January 26, 2015

Is it possible to setup HockeyApp to create version in JIRA project when new version is released over hockeyapp?

 

Hockey app is able to execute some URL when version is released.

1 answer

0 votes
wm
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
January 27, 2015

Hello Neven,

 

You can create a version via REST API in JIRA:

https://docs.atlassian.com/jira/REST/latest/#d2e2178

Example json:

{
    "description": "An excellent version",
    "name": "New Version 1",
    "archived": false,
    "released": true,
    "releaseDate": "2010-07-06",
    "userReleaseDate": "6/Jul/2010",
    "project": "PXA",
    "projectId": 10000
}

I am not familiar with HockeyApp, but if it can execute the POST in the link above it can at least create a version in JIRA. Also, be aware you would need to pass authentication that has appropriate access to the JIRA project in question.

Suggest an answer

Log in or Sign up to answer