<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?
Duplicate of https://answers.atlassian.com/questions/20646203
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.