Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

retrieving form values to create jira issue using Rest API

Sumithra Sudhir July 14, 2015

<tr>

           <td width="150">Priority</td>

            <td><select id="priority"><option value="1">Major</option><option value="2">Blocker</option><option value="3">Minor</option></select></td>

 </tr>

<tr>

            <td width="150">Name</td>

            <td><input name="name"  type="text" /></td>

 </tr>

 <tr>

            <td width="150">Email</td>

            <td><input name="email" type="text" /></td>

</tr>

<tr>

            <td width="150">Priority</td>

            <td><select id="priority"><option value="1">Major</option><option value="2">Blocker</option><option value="3">Minor</option></select></td>

</tr>

 I am using the Rest API to create the new issue in Jira.

 

$new_issue = array(

    'fields' => array(

        'project' => array('key' => 'somevalue'),

        'summary' => 'somevalue',

        'description' => 'Description of issue goes here.',

        'issuetype' => array('name' => 'somevalue')

     

    )

);

 How can I get those form values here instead of these hardcoded values?

 

 

1 answer

1 accepted

0 votes
Answer accepted
Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 14, 2015

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events